Skip to content

ajuste url

ajuste url #82

Workflow file for this run

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 }}"