fix file/directory names in ci
Some checks failed
Build and Release / build (push) Failing after 28s
Build and Release / sign (push) Has been skipped

This commit is contained in:
Emil Lerch 2025-07-19 14:24:01 -07:00
parent 45b1cd58d9
commit a9375b404e
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -30,22 +30,22 @@ jobs:
- name: Create release archive (linux x86_64) - name: Create release archive (linux x86_64)
run: | run: |
mkdir -p release-tracker-x86_64-linux mkdir -p release-tracker-x86_64-linux
cp zig-out/bin/release-tracker release-tracker-linux-x86_64-linux/ cp zig-out/bin/release-tracker release-tracker-x86_64-linux/
cp config.example.json release-tracker-linux-x86_64-linux/ cp config.example.json release-tracker-x86_64-linux/
cp README.md release-tracker-linux-x86_64-linux/ cp README.md release-tracker-x86_64-linux/
tar -czf release-tracker-x86_64-linux.tar.gz release-tracker-linux-x86_64-linux/ tar -czf release-tracker-x86_64-linux.tar.gz release-tracker-x86_64-linux/
- name: Publish release archive - name: Publish release archive
run: | run: |
curl -s --user ${{ github.actor }}:${{ secrets.PACKAGE_PUSH }} \ curl -s --user ${{ github.actor }}:${{ secrets.PACKAGE_PUSH }} \
--upload-file ${{ runner.temp }}/${{ github.sha }}-with-models.tar.gz \ --upload-file release-tracker-x86_64-linux.tar.gz
https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/${{ github.sha }}/${{ github.sha }}-with-models.tar.gz https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/${{ github.sha }}/release-tracker-x86_64-linux.tar.gz
- name: Upload - name: Upload
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: release-tracker-linux-x86_64 name: release-tracker-linux-x86_64
path: 'zig-out/bin/relase-tracker' path: 'zig-out/bin/release-tracker'
- name: Notify - name: Notify
uses: https://git.lerch.org/lobo/action-notify-ntfy@v2 uses: https://git.lerch.org/lobo/action-notify-ntfy@v2
@ -70,7 +70,7 @@ jobs:
uses: https://git.lerch.org/lobo/action-hsm-sign@v1 uses: https://git.lerch.org/lobo/action-hsm-sign@v1
with: with:
pin: ${{ secrets.HSM_USER_PIN }} pin: ${{ secrets.HSM_USER_PIN }}
files: flexilib files: release-tracker-linux-x86_64
public_key: 'https://emil.lerch.org/serverpublic.pem' public_key: 'https://emil.lerch.org/serverpublic.pem'
- name: Output signature URL - name: Output signature URL
run: echo "Signature URL is ${{ steps.sign.outputs.URL_0 }}" run: echo "Signature URL is ${{ steps.sign.outputs.URL_0 }}"