Skip to content

Commit

Permalink
Updating website action
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Aug 19, 2024
1 parent 8802355 commit 71a031f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,26 @@ jobs:
git commit -a -m 'Re-build examples' || echo Nothing has changed
git push origin || echo "No changes to commit"
website:
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: actions/checkout@v4

- uses: actions/upload-pages-artifact@v3
with:
path: "./"

- name: Deploy to GitHub pages
uses: actions/deploy-pages@v4



0 comments on commit 71a031f

Please sign in to comment.