ajuste de url #83
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: deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: '8.0' | |
| - name: Publish .NET Core Project | |
| run: dotnet publish Portfolio/Portfolio.csproj -c Release -o release --nologo | |
| - name: Change base-tag in index.html from / to portfolio-anderson | |
| run: sed -i 's/<base href="\/" \/>/<base href="\/portfolio-anderson\/" \/>/g' release/wwwroot/index.html | |
| - name: copy index.html to 404.html | |
| run: cp release/wwwroot/index.html release/wwwroot/404.html | |
| - name: Add .nojekyll file | |
| run: touch release/wwwroot/.nojekyll | |
| - name: Commit wwwroot to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@3.7.1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: gh-pages | |
| FOLDER: release/wwwroot | |
| - name: Use GitHub Secret | |
| run: | | |
| echo "Segredo 1: ${{ secrets.DEVTO }}" |