Skip to content

Commit

Permalink
build: rename dist to tauri dist
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickDinh committed Mar 26, 2024
1 parent 23cc75a commit 892fb2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/actions/build-linux/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ runs:

- name: Move binary to target directory
run: |
mkdir -p dist
mv src-tauri/target/release/algokit-explorer dist/algokit-explorer
mkdir -p tauri-dist
mv src-tauri/target/release/algokit-explorer tauri-dist/algokit-explorer
shell: bash

# - name: HACK - move binary to target directory
# run: |
# mkdir -p dist
# cp src/assets/react.svg dist/algokit-explorer
# chmod +x dist/algokit-explorer
# mkdir -p tauri-dist
# cp src/assets/react.svg tauri-dist/algokit-explorer
# chmod +x tauri-dist/algokit-explorer
# shell: bash

- name: Zip to preserve permissions
run: |
cd dist
cd tauri-dist
tar -czvf ../algokit-explorer-linux.tar.gz .
shell: bash

Expand Down

0 comments on commit 892fb2b

Please sign in to comment.