Skip to content

Commit 356a0f1

Browse files
try to fix release files
1 parent 81cdd7b commit 356a0f1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ jobs:
1717
- name: Release
1818
uses: softprops/action-gh-release@v1
1919
with:
20-
files: build/systemaudio dist/systemaudio.alfredworkflow
20+
files: |
21+
dist/systemaudio
22+
dist/systemaudio.alfredworkflow

build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ set -xe
44
bin_path=$(swift build --configuration release --show-bin-path --arch arm64 --arch x86_64)
55
swift build --configuration release --arch arm64 --arch x86_64
66

7-
mkdir -p build
7+
mkdir -p build dist
8+
89
cp alfred/* build/
910
cp "${bin_path}/systemaudio" build/
11+
cp "${bin_path}/systemaudio" dist/
1012

11-
mkdir -p dist
1213
cd build
1314
zip -r ../dist/systemaudio.alfredworkflow *

0 commit comments

Comments
 (0)