-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
d074064
committed
Feb 10, 2023
1 parent
5044dee
commit f71775d
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: CV | ||
env: | ||
PUBLISH_DIR: bin/Release/net7.0/publish/wwwroot | ||
# Controls when the action will run | ||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- 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: GitHub Pages | ||
if: success() | ||
uses: crazy-max/ghaction-github-pages@v1.5.1 | ||
with: | ||
target_branch: gh-pages | ||
build_dir: ${{ env.PUBLISH_DIR }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |