Skip to content

Commit

Permalink
rename package again
Browse files Browse the repository at this point in the history
  • Loading branch information
eumel8 committed Jun 17, 2024
1 parent 5458c1b commit 324f337
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
export PATH=$PATH:~/go/bin
fyne-cross linux -output carbonapp -arch=amd64,arm64 -debug .
ls -lR fyne-cross
- name: rename
- name: package
run: |
mv fyne-cross/bin/linux-arm64/carbonapp.tar.xz fyne-cross/bin/linux-arm64/carbonapp-arm64.tar.xz
mv fyne-cross/bin/linux-amd64/carbonapp.tar.xz fyne-cross/bin/linux-amd64/carbonapp-amd64.tar.xz
cd fyne-cross/bin/linux-arm64/; tar cvfz carbonapp-arm64.tgz carbonapp; cd ..
cd fyne-cross/bin/linux-amd64/; tar cvfz carbonapp-amd64.tgz carbonapp; cd ..
#sudo apt update
#sudo apt-get -y install bc gcc libgl1-mesa-dev libwayland-dev libx11-dev libxkbcommon-dev xorg-dev xvfb
#sudo apt-get -y install libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev gcc pkg-config libxxf86vm-dev
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
uses: fnkr/github-action-ghr@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GHR_PATH: fyne-cross/bin/linux-amd64/carbonapp-amd64.tar.xz
GHR_PATH: fyne-cross/bin/linux-amd64/carbonapp-amd64.tgz
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GHR_REPLACE: true
- name: Release linux-arm64
uses: fnkr/github-action-ghr@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GHR_PATH: fyne-cross/bin/linux-arm64/carbonapp-arm64.tar.xz
GHR_PATH: fyne-cross/bin/linux-arm64/carbonapp-arm64.tgz
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GHR_REPLACE: true

0 comments on commit 324f337

Please sign in to comment.