config: Update 2 files
Some checks failed
Build-Test-Publish / build (linux/amd64) (push) Failing after 6s
Build-Test-Publish / build (linux/arm64) (push) Failing after 7s
Build-Test-Publish / test-install-from-scratch (linux/amd64) (push) Has been skipped
Build-Test-Publish / test-install-from-scratch (linux/arm64) (push) Has been skipped

This commit is contained in:
Your Name 2025-06-22 18:14:18 +12:00
parent 27d231bee5
commit 492a72275d
2 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@ jobs:
registry: gitea.jde.nz registry: gitea.jde.nz
username: DoesntMatter username: DoesntMatter
password: ${{ secrets.DOCKER_PUSH_TOKEN }} password: ${{ secrets.DOCKER_PUSH_TOKEN }}
- name: install upx
run: |
sudo apt-get install -y upx
- name: Build Test Publish All - name: Build Test Publish All
run: | run: |
SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} ./buildtestpublish_all.sh SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} ./buildtestpublish_all.sh

View File

@ -18,7 +18,7 @@ function heading() {
heading "Publishing ${PROJECT}" heading "Publishing ${PROJECT}"
function die() { function die() {
title "error: $1" heading "error: $1"
exit 1 exit 1
} }