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 81cdd7b commit 356a0f1Copy full SHA for 356a0f1
.github/workflows/release.yml
@@ -17,4 +17,6 @@ jobs:
17
- name: Release
18
uses: softprops/action-gh-release@v1
19
with:
20
- files: build/systemaudio dist/systemaudio.alfredworkflow
+ files: |
21
+ dist/systemaudio
22
+ dist/systemaudio.alfredworkflow
build.sh
@@ -4,10 +4,11 @@ set -xe
4
bin_path=$(swift build --configuration release --show-bin-path --arch arm64 --arch x86_64)
5
swift build --configuration release --arch arm64 --arch x86_64
6
7
-mkdir -p build
+mkdir -p build dist
8
+
9
cp alfred/* build/
10
cp "${bin_path}/systemaudio" build/
11
+cp "${bin_path}/systemaudio" dist/
12
-mkdir -p dist
13
cd build
14
zip -r ../dist/systemaudio.alfredworkflow *
0 commit comments