chore(deps): update dependency meziantou.framework.inlinesnapshottest… #747
This file contains hidden or 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
| # Production deploy to GitHub Pages (gh-pages branch). | |
| # Keep pr-preview/ so rossjrw/pr-preview-action deployments survive main pushes. | |
| # See: https://github.com/rossjrw/pr-preview-action#full-example | |
| name: github pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: pages-production | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: ./.github/workflows/steps | |
| - name: Publish | |
| run: > | |
| dotnet publish Webassembly/Webassembly.csproj | |
| -c:Release | |
| -o:publish | |
| -p:GHPages=true | |
| -p:GHPagesBase=https://siteswaps.passing.zone | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@fa24774553152dd7873cd16ebd8d959b010c5445 # v4.9.0 | |
| with: | |
| folder: publish/wwwroot | |
| branch: gh-pages | |
| clean-exclude: pr-preview | |
| force: false |