diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2025-01-15 21:25:58 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2025-01-15 21:25:58 -0600 |
| commit | 0bf06e720d305fbf0b26d57919cd1b48afb07aec (patch) | |
| tree | a4c199bc22ddaef3f65ab6ad2c0e6c1125bd4254 /.github | |
| parent | 70db8aef1f249b79f6370f4cf366d4eb5d7dd612 (diff) | |
Updated workflows
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8271b98..b04a030f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,12 +58,19 @@ jobs: uses: actions/download-artifact@v4 with: name: starship.o2r - path: ./build/x64/Release/starship.o2r + path: ./build/x64/Release + - name: Create Package + run: | + mkdir starship-release + mv build/x64/Release/Starship.exe starship-release/ + mv build/x64/Release/starship.o2r starship-release/ + mv config.json starship-release/ + mv assets starship-release/ - name: Upload build uses: actions/upload-artifact@v4 with: name: starship-windows - path: ./build/x64/Release + path: starship-release build-macos: needs: generate-port-o2r @@ -82,12 +89,14 @@ jobs: uses: actions/download-artifact@v4 with: name: starship.o2r - path: build-cmake/starship.o2r + path: ./build-cmake - name: Create Package run: | mkdir starship-release mv build-cmake/Starship starship-release/ mv build-cmake/starship.o2r starship-release/ + mv config.json starship-release/ + mv assets starship-release/ - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: @@ -127,7 +136,7 @@ jobs: uses: actions/download-artifact@v4 with: name: starship.o2r - path: build-cmake/starship.o2r + path: ./build-cmake - name: Build run: | cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release @@ -141,4 +150,6 @@ jobs: with: name: Starship-linux path: | - starship.appimage
\ No newline at end of file + starship.appimage + config.json + assets
\ No newline at end of file |
