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 113c7aa
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 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: dryrun@example.com
filename: build/distrib/ctan/lua-ul-ctan.zip
dry-run: true
- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
Expand All @@ -36,10 +43,10 @@ jobs:
with:
artifacts: "*.zip"
token: ${{ secrets.GITHUB_TOKEN }}
draft: true

ctan-validate:
ctan-upload:
runs-on: ubuntu-22.04
environment: CTAN
needs:
- l3build
steps:
Expand All @@ -51,10 +58,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: dryrun@example.com
uploader: ${{ secrets.CTAN_NAME }}
email: ${{ secrets.CTAN_EMAIL }}
filename: lua-ul-ctan.zip
dry-run: true
dry-run: false

0 comments on commit 113c7aa

Please sign in to comment.