Skip to content

Commit 6006cd6

Browse files
committed
fix path
1 parent 83d9155 commit 6006cd6

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ jobs:
1717
uses: actions/download-artifact@v4
1818
with:
1919
name: Kiwi8-${{ github.ref_name }}-macOS
20+
path: .
2021

2122
- name: Create macOS release archive
2223
run: |
23-
cd Kiwi8-${{ github.ref_name }}-macOS
24-
zip -r -y ../Kiwi8-${{ github.ref_name }}-macOS.zip Kiwi8.app
25-
cd ..
24+
zip -r -y Kiwi8-${{ github.ref_name }}-macOS.zip Kiwi8.app
2625
2726
- name: Upload macOS build to Release
2827
uses: softprops/action-gh-release@v2
@@ -37,13 +36,12 @@ jobs:
3736
uses: actions/download-artifact@v4
3837
with:
3938
name: Kiwi8-${{ github.ref_name }}-Windows
39+
path: .
4040

4141
- name: Create Windows release archive
4242
shell: powershell
4343
run: |
44-
cd Kiwi8-${{ github.ref_name }}-Windows
45-
Compress-Archive -Path * -DestinationPath ../Kiwi8-${{ github.ref_name }}-Windows.zip
46-
cd ..
44+
Compress-Archive -Path * -DestinationPath Kiwi8-${{ github.ref_name }}-Windows.zip
4745
4846
- name: Upload Windows build to Release
4947
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)