Update images #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Static Web App to GH Pages | |
on: | |
push: | |
branches: | |
- dev | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
call_build_app: | |
uses: ./.github/workflows/build-app.yaml | |
secrets: inherit | |
call_deploy_gh_pages: | |
needs: | |
- call_build_app | |
uses: ./.github/workflows/deploy-gh-pages.yaml | |
secrets: inherit |