Compression retouches
This commit is contained in:
parent
6c063e3fcc
commit
3ea00897c8
1 changed files with 3 additions and 3 deletions
6
.github/workflows/c-cpp.yml
vendored
6
.github/workflows/c-cpp.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
args: --enable-networking --enable-release-build
|
args: --enable-networking --enable-release-build
|
||||||
artifacts_name: PCem-Ubuntu-${{ github.head_ref }}-${{ github.run_number }}
|
artifacts_name: PCem-Ubuntu-${{ github.head_ref }}-${{ github.run_number }}
|
||||||
artifacts_path: PCem.tar
|
artifacts_path: PCem.tar.bz2
|
||||||
installdeps: >-
|
installdeps: >-
|
||||||
libsdl2-dev
|
libsdl2-dev
|
||||||
libopenal-dev
|
libopenal-dev
|
||||||
|
|
@ -167,7 +167,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cp ./temp/src/pcem.exe dist
|
cp ./temp/src/pcem.exe dist
|
||||||
cd dist
|
cd dist
|
||||||
zip ${{ matrix.artifacts_path }} *
|
zip -9 ${{ matrix.artifacts_path }} *
|
||||||
|
|
||||||
- name: prepare-package (Linux)
|
- name: prepare-package (Linux)
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
|
@ -191,7 +191,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cp ./temp/src/pcem dist
|
cp ./temp/src/pcem dist
|
||||||
cd dist
|
cd dist
|
||||||
tar -czf ${{ matrix.artifacts_path }} *
|
tar -cjf ${{ matrix.artifacts_path }} *
|
||||||
|
|
||||||
- name: "Upload GitHub Actions artifacts"
|
- name: "Upload GitHub Actions artifacts"
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue