Skip to content

Commit

Permalink
fix(ci): automate CTAN validation and uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
muzimuzhi authored and hmenke committed Jan 15, 2023
1 parent 9aa0ebf commit 989e6c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,13 @@ jobs:
- name: "CTAN: Validate"
run: |
l3build upload --dry-run --date "$tagdate" "$tagname"
# temp workaround for l3build 2022-11-10
# see https://github.com/latex3/l3build/issues/264
echo "n" | l3build upload --dry-run --date "$tagdate" "$tagname"
- name: "CTAN: Upload"
if: github.repository == 'pgf-tikz/pgf'
run: |
l3build upload --date "$tagdate" "$tagname"
# temp workaround for l3build 2022-11-10
# https://github.com/latex3/l3build/issues/265
echo "y" | l3build upload --date "$tagdate" "$tagname"

0 comments on commit 989e6c9

Please sign in to comment.