fix build I hope?
- SHA
36763d97a288fdc930c7c308dc0c897ccf89542a- Parents
-
b1d6285 - Tree
707e0d3
36763d9
36763d97a288fdc930c7c308dc0c897ccf89542ab1d6285
707e0d3| Status | File | + | - |
|---|---|---|---|
| M |
.github/workflows/release.yml
|
6 | 5 |
.github/workflows/release.ymlmodified@@ -4,12 +4,13 @@ on: | ||
| 4 | 4 | push: |
| 5 | 5 | tags: |
| 6 | 6 | - 'v*' |
| 7 | + workflow_dispatch: # Allows manual trigger from GitHub UI | |
| 7 | 8 | |
| 8 | 9 | jobs: |
| 9 | 10 | build-windows: |
| 10 | 11 | runs-on: windows-latest |
| 11 | 12 | steps: |
| 12 | - - uses: actions/checkout@v3 | |
| 13 | + - uses: actions/checkout@v4 | |
| 13 | 14 | |
| 14 | 15 | - name: Set up Python |
| 15 | 16 | uses: actions/setup-python@v4 |
@@ -31,7 +32,7 @@ jobs: | ||
| 31 | 32 | 7z a -tzip wulFTP-windows.zip wulFTP.exe |
| 32 | 33 | |
| 33 | 34 | - name: Upload artifact |
| 34 | - uses: actions/upload-artifact@v3 | |
| 35 | + uses: actions/upload-artifact@v4 | |
| 35 | 36 | with: |
| 36 | 37 | name: windows-build |
| 37 | 38 | path: dist/wulFTP-windows.zip |
@@ -61,7 +62,7 @@ jobs: | ||
| 61 | 62 | hdiutil create -volname "wulFTP" -srcfolder wulFTP.app -ov -format UDZO wulFTP-macos.dmg |
| 62 | 63 | |
| 63 | 64 | - name: Upload artifact |
| 64 | - uses: actions/upload-artifact@v3 | |
| 65 | + uses: actions/upload-artifact@v4 | |
| 65 | 66 | with: |
| 66 | 67 | name: macos-build |
| 67 | 68 | path: dist/wulFTP-macos.dmg |
@@ -99,7 +100,7 @@ jobs: | ||
| 99 | 100 | tar -czf wulFTP-linux.tar.gz wulFTP |
| 100 | 101 | |
| 101 | 102 | - name: Upload artifact |
| 102 | - uses: actions/upload-artifact@v3 | |
| 103 | + uses: actions/upload-artifact@v4 | |
| 103 | 104 | with: |
| 104 | 105 | name: linux-build |
| 105 | 106 | path: dist/wulFTP-linux.tar.gz |
@@ -111,7 +112,7 @@ jobs: | ||
| 111 | 112 | - uses: actions/checkout@v3 |
| 112 | 113 | |
| 113 | 114 | - name: Download all artifacts |
| 114 | - uses: actions/download-artifact@v3 | |
| 115 | + uses: actions/download-artifact@v4 | |
| 115 | 116 | |
| 116 | 117 | - name: Create Release |
| 117 | 118 | uses: softprops/action-gh-release@v1 |