Skip to content

Commit

Permalink
experimenting with CI
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Jul 18, 2024
1 parent 4e20649 commit 88ed02f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/developer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@ jobs:
wgrib2/build/*.html
wgrib2/build/*.css
- name: Upload Artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v1
with:
path: |
wgrib2/build/*.html
wgrib2/build/*.css
- name: Upload built documentation
uses: actions/upload-pages-artifact@v1
with:
Expand All @@ -171,3 +179,21 @@ jobs:
- name: Deploy
uses: actions/deploy-pages@v1

deploy-coverage:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: developer

permissions:
pages: write
id-token: write

environment:
# environment created automatically by GitHub
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 88ed02f

Please sign in to comment.