Merge pull request #2303 from tiopex/fix-actions

Actions: dont fail on cleanup, remove push to sourceforge for official
This commit is contained in:
tiopex
2026-02-09 15:10:22 +01:00
committed by GitHub
2 changed files with 2 additions and 12 deletions

View File

@@ -115,6 +115,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: geekyeggo/delete-artifact@v5
continue-on-error: true
with:
name: |
aarch64 (${{ inputs.DEVICE }})

View File

@@ -232,15 +232,4 @@ jobs:
token: ${{ steps.app-token.outputs.token }}
draft: true
bodyFile: "release-body.md"
- name: Set up SSH sourceforge
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SF_SSH_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan frs.sourceforge.net >> ~/.ssh/known_hosts
- name: Upload files sourceforge
run: |
FILES=$(find . -type f \( -name "*.tar" -o -name "*.img.gz" -o -name "*.sha256" \))
for FILE in $FILES; do
rsync -e ssh "$FILE" tiopex@frs.sourceforge.net:/home/frs/project/rocknix/official/${{ env.DATE }}/
done