We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f698ae6 commit ad0445eCopy full SHA for ad0445e
.github/workflows/release-desktop.yml
@@ -72,18 +72,18 @@ jobs:
72
with:
73
use-cross: ${{ matrix.cross }}
74
command: build
75
- args: --release --target ${{ matrix.target }} --bin ascella-desktop
+ args: --release
76
77
- name: Strip release binary (linux and macos)
78
- run: strip "./target/${{ matrix.target }}/release/$BIN_NAME"
+ run: strip "./target/release/$BIN_NAME"
79
80
- name: make dist
81
run: mkdir dist
82
83
- name: Build archive
84
- if: matrix.build == 'x86_64-macos'
85
shell: bash
86
- run: cp "target/${{ matrix.target }}/release/$BIN_NAME" "dist/"
+ run: cp "target/release/$BIN_NAME" "dist/"
+
87
- name: Build stuff
88
if: matrix.build == 'x86_64-linux'
89
run: |
0 commit comments