Skip to content

Commit 204334a

Browse files
committed
🔧 Move executable before making executable
1 parent 163469b commit 204334a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/swift.yml

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

0 commit comments

Comments
 (0)