Skip to content

Commit

Permalink
Actually deploy built artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Jan 5, 2025
1 parent cb2ba95 commit c65c04d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,17 @@ jobs:
uses: actions/upload-pages-artifact@v2
with:
path: 'target/bevy_web/web'

deploy:
needs: [ build ]
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit c65c04d

Please sign in to comment.