Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
chore: rename RPI output
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Jun 21, 2024
1 parent 1868acb commit 9362793
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/package-raspberry-pi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 9362793

Please sign in to comment.