mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-22 17:45:16 +00:00
tar linux as well
This commit is contained in:
parent
46c154537f
commit
7f036f17a2
1 changed files with 6 additions and 6 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -50,20 +50,20 @@ jobs:
|
|||
buildsPath: build
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
|
||||
# Required on Mac for permission reasons
|
||||
# Required on Mac/Linux to keep executable permissions
|
||||
- name: Tar files
|
||||
if: matrix.targetPlatform == 'StandaloneOSX'
|
||||
if: matrix.targetPlatform != 'StandaloneWindows64'
|
||||
run: tar -cvf ${{ matrix.targetPlatform }}.tar ./build/${{ matrix.targetPlatform }}
|
||||
|
||||
- name: Upload Artifact (Windows / Linux)
|
||||
if: matrix.targetPlatform != 'StandaloneOSX'
|
||||
- name: Upload Artifact (Windows)
|
||||
if: matrix.targetPlatform == 'StandaloneWindows64'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
path: ./build/${{ matrix.targetPlatform }}/
|
||||
|
||||
- name: Upload Artifact (macOS)
|
||||
if: matrix.targetPlatform == 'StandaloneOSX'
|
||||
- name: Upload Artifact (macOS / Linux)
|
||||
if: matrix.targetPlatform != 'StandaloneWindows64'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
|
|
Loading…
Reference in a new issue