Skip to content

Commit

Permalink
ci: try to fix script evaluation bug
Browse files Browse the repository at this point in the history
Signed-off-by: Harry Chen <[email protected]>
  • Loading branch information
Harry-Chen committed Mar 20, 2024
1 parent 6ccec19 commit 904012d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
thuthesis.pdf
thuthesis-example.pdf
- name: Build release zip
run: python3 create_release.py --version $(git describe --tags)
run: |
version=$(git describe --tags)
echo "Current git revision: $version"
python3 create_release.py --version $version
- name: Build CTAN release zip with l3build
run: l3build ctan --config build-ctan
- name: Upload release zip
Expand Down

0 comments on commit 904012d

Please sign in to comment.