Skip to content

Commit

Permalink
Fix run error to explicity refer to master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jwrober committed Jan 26, 2022
1 parent 8d2ba22 commit f4b83e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: bugfix/alpha10
- run: git rev-parse --short=5 HEAD > cmake/AutoRevision.txt
- run: git describe --tags `git rev-list --tags --max-count=1 master` >> cmake/AutoRevision.txt
- run: git describe --tags `git rev-list --tags --max-count=1` >> cmake/AutoRevision.txt
- run: cat cmake/AutoRevision.txt
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Release update of AutoRevision.txt"
Expand All @@ -23,6 +25,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: bugfix/alpha10
- name: Make build directory
run: mkdir -p -v $PWD/build
- name: Create tar.gz
Expand Down

0 comments on commit f4b83e3

Please sign in to comment.