This commit is contained in:
mark 2025-01-21 22:53:45 -08:00
parent 9966d52a8a
commit eb1ee2c2cb
2 changed files with 4 additions and 3 deletions

View File

@ -77,7 +77,7 @@ jobs:
with:
name: "LaTeX logs"
path: "**/*.log"
retention-days: 1
retention-days: 14
# Upload build output
- name: "Save output"
@ -85,13 +85,14 @@ jobs:
with:
name: "Build output"
path: "output/*"
retention-days: 10
retention-days: 7
- name: "Publish package"
run: |
PUBLISH_USER="${{ secrets.PUBLISH_USER }}" \
PUBLISH_KEY="${{ secrets.PUBLISH_KEY }}" \
VERSION="${{ github.sha }}" \
PACKAGE="${{ secrets.PACKAGE }}" \
python tools/build/publish.py

View File

@ -8,7 +8,7 @@ from requests.auth import HTTPBasicAuth
URL="https://git.betalupi.com"
USER = os.environ['USER']
PACKAGE = "ormc-handouts"
PACKAGE = os.environ['PACKAGE']
VERSION = os.environ['VERSION']
AUTH = HTTPBasicAuth(USER, os.environ['PUBLISH_KEY'])