Skip to content

Commit 3de7c9d

Browse files
committed
💚 Fix path to executable
1 parent 204334a commit 3de7c9d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/swift.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717
- name: Build
1818
run: swift build -v -c release --arch arm64 --arch x86_64
1919
- name: Make executable
20-
run: |
21-
mv .build/release/swift-changelog-parser .
22-
chmod +x swift-changelog-parser
20+
run: chmod +x .build/apple/Products/Release/swift-changelog-parser
2321
- name: Get current date
2422
id: date
2523
run: echo "date=$(date +'%Y.%m.%d')" >> $GITHUB_ENV
@@ -39,6 +37,6 @@ jobs:
3937
- name: Release
4038
uses: softprops/action-gh-release@v2
4139
with:
42-
files: swift-changelog-parser
40+
files: .build/apple/Products/Release/swift-changelog-parser
4341
make_latest: "true"
4442
tag_name: ${{ env.tag_name }}

0 commit comments

Comments
 (0)