Prueba Update net8 and prerendering components #152
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: PublishApp | |
env: | |
PUBLISH_DIR: bin/Release/net7.0/publish/wwwroot | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Controls when the action will run | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
#- name: abcd | |
#run: | | |
#pwd | |
#ls -S | |
- name: Publish app | |
run: dotnet publish -c Release | |
- name: Rewrite base href | |
uses: SteveSandersonMS/ghaction-rewrite-base-href@v1 | |
with: | |
html_path: ${{ env.PUBLISH_DIR }}/index.html | |
base_href: /CV/ | |
#- name: Print Directories Tree | |
#run: | | |
#ls -S | |
- name: Nojekyl file add | |
run: cat > .nojekyll | |
- name: GitHub Pages | |
if: success() | |
uses: crazy-max/[email protected] | |
with: | |
target_branch: gh-pages | |
build_dir: ${{ env.PUBLISH_DIR }} | |
env: | |
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | |