Publish latest
All checks were successful
CI / Typst formatting (push) Successful in 9s
CI / Typos (push) Successful in 16s
CI / Build (push) Successful in 12m3s

This commit is contained in:
Mark 2025-01-22 08:36:54 -08:00
parent 66670d6751
commit f6dfffb9c0
Signed by: Mark
GPG Key ID: C6D63995FE72FD80

View File

@ -88,7 +88,7 @@ jobs:
path: "output/*"
retention-days: 7
- name: "Publish package"
- name: "Publish package (hash)"
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: |
PUBLISH_USER="${{ secrets.PUBLISH_USER }}" \
@ -96,3 +96,12 @@ jobs:
VERSION="${{ github.sha }}" \
PACKAGE="${{ vars.PACKAGE }}" \
python tools/scripts/publish.py
- name: "Publish package (latest)"
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: |
PUBLISH_USER="${{ secrets.PUBLISH_USER }}" \
PUBLISH_KEY="${{ secrets.PUBLISH_KEY }}" \
VERSION="latest" \
PACKAGE="${{ vars.PACKAGE }}" \
python tools/scripts/publish.py