We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa0ebf commit 989e6c9Copy full SHA for 989e6c9
.github/workflows/main.yml
@@ -124,9 +124,13 @@ jobs:
124
125
- name: "CTAN: Validate"
126
run: |
127
- l3build upload --dry-run --date "$tagdate" "$tagname"
+ # temp workaround for l3build 2022-11-10
128
+ # see https://github.com/latex3/l3build/issues/264
129
+ echo "n" | l3build upload --dry-run --date "$tagdate" "$tagname"
130
131
- name: "CTAN: Upload"
132
if: github.repository == 'pgf-tikz/pgf'
133
- l3build upload --date "$tagdate" "$tagname"
134
135
+ # https://github.com/latex3/l3build/issues/265
136
+ echo "y" | l3build upload --date "$tagdate" "$tagname"
0 commit comments