diff --git a/.github/workflows/package-raspberry-pi.yml b/.github/workflows/package-raspberry-pi.yml index 00702bb0..8329ebc4 100644 --- a/.github/workflows/package-raspberry-pi.yml +++ b/.github/workflows/package-raspberry-pi.yml @@ -55,7 +55,8 @@ jobs: ${{ github.workspace }}/armv6-unknown-linux-gnueabihf/bin/armv6-unknown-linux-gnueabihf-strip ./nostr-wallet-connect patchelf --force-rpath --set-rpath '$ORIGIN/lib' ./nostr-wallet-connect - # TODO: remove this; it produces a ZIP archive that loses all permissions (for now, the update.sh script uses this artifact). + # TODO: remove this once install.sh and update.sh are updated (they currently use this artifact) + # it produces a ZIP archive that loses all permissions - name: Archive the artifacts uses: actions/upload-artifact@v4 with: @@ -74,11 +75,11 @@ jobs: mkdir -p ./tmp mv ./nostr-wallet-connect ./tmp/ mv ./lib ./tmp/ - tar -cjf nostr-wallet-connect.tar.bz2 -C ./tmp . + tar -cjf nostr-wallet-connect-rpi.tar.bz2 -C ./tmp . rm -Rf ./tmp - name: Upload the package uses: actions/upload-artifact@v4 with: - name: nostr-wallet-connect.tar.bz2 - path: nostr-wallet-connect.tar.bz2 + name: nostr-wallet-connect-rpi.tar.bz2 + path: nostr-wallet-connect-rpi.tar.bz2