publish of the template #40
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
| name: Build and publish to gh pages | |
| on: | |
| push: | |
| branches: ["*"] | |
| env: | |
| ASPNETCORE_ENVIRONMENT: Production | |
| WEBAPP_PATH: ./ | |
| WEBAPP_CSPROJ: BlazorStaticMinimalBlog.csproj | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET 9 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Remove launchSettings.json (to not override ASPNETCORE_ENVIRONMENT) | |
| run: rm ${{ env.WEBAPP_PATH }}Properties/launchSettings.json | |
| - run: mkdir -p "${{ env.WEBAPP_PATH }}wwwroot" && touch "${{ env.WEBAPP_PATH }}wwwroot/.nojekyll" | |
| - name: Run webapp and generate static files | |
| run: | | |
| dotnet run --project ${{ env.WEBAPP_PATH }}${{env.WEBAPP_CSPROJ}} --configuration Release | |
| - name: Deploy to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: ${{ env.WEBAPP_PATH }}output |