Skip to content

Commit

Permalink
possibly fix more
Browse files Browse the repository at this point in the history
  • Loading branch information
Tricked-dev committed Apr 23, 2022
1 parent f698ae6 commit ad0445e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ jobs:
with:
use-cross: ${{ matrix.cross }}
command: build
args: --release --target ${{ matrix.target }} --bin ascella-desktop
args: --release

- name: Strip release binary (linux and macos)
run: strip "./target/${{ matrix.target }}/release/$BIN_NAME"
run: strip "./target/release/$BIN_NAME"

- name: make dist
run: mkdir dist

- name: Build archive
if: matrix.build == 'x86_64-macos'
shell: bash
run: cp "target/${{ matrix.target }}/release/$BIN_NAME" "dist/"
run: cp "target/release/$BIN_NAME" "dist/"

- name: Build stuff
if: matrix.build == 'x86_64-linux'
run: |
Expand Down

0 comments on commit ad0445e

Please sign in to comment.