Skip to content

Commit

Permalink
Do actual upload
Browse files Browse the repository at this point in the history
  • Loading branch information
zauguin committed Feb 26, 2024
1 parent 50910aa commit d92a572
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
package_file: .github/tl_packages
- name: Run l3build
run: l3build ctan --show-log-on-error -H
- name: Validate CTAN package
uses: ./.github/actions/ctan-upload
with:
uploader: Dummy Name
email: [email protected]
filename: build/distrib/ctan/lua-ul-ctan.zip
dry-run: true
- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
Expand All @@ -38,8 +45,9 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
draft: true

ctan-validate:
ctan-upload:
runs-on: ubuntu-22.04
environment: CTAN
needs:
- l3build
steps:
Expand All @@ -51,10 +59,10 @@ jobs:
uses: actions/download-artifact@v4
with:
name: Package
- name: Validate CTAN package
- name: Upload CTAN package
uses: ./.github/actions/ctan-upload
with:
uploader: Dummy Name
email: [email protected]
uploader: ${{ secrets.CTAN_NAME }}
uploader: ${{ secrets.CTAN_EMAIL }}
filename: lua-ul-ctan.zip
dry-run: true
dry-run: false

0 comments on commit d92a572

Please sign in to comment.