-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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: | ||
|
@@ -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: [email protected] | ||
uploader: ${{ secrets.CTAN_NAME }} | ||
email: ${{ secrets.CTAN_EMAIL }} | ||
filename: lua-ul-ctan.zip | ||
dry-run: true | ||
dry-run: false |