aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLeifa <26681464+TrickyLeifa@users.noreply.github.com>2024-06-24 14:46:52 +0200
committerGitHub <noreply@github.com>2024-06-24 14:46:52 +0200
commit7e527353a63bd5e71006ff3d8c27243e6e22eaea (patch)
treea9e05b51b880b343ffe269309a7f98c86af701bb /.github/workflows
parentc7e43cb2871e75c8d9988390a312d109d68cf211 (diff)
Fix Linux archiving a tar inside a zip
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 14a45926..7620f3f9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -81,7 +81,7 @@ jobs:
- name: Build Apng plugin
run: |
cd ./qtapng
- cmake . -D CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE="${{ github.workspace }}/bin/imageformats/"
+ cmake .
cmake --build . --config Release
- name: Build
@@ -167,19 +167,17 @@ jobs:
cmake --build . --config Release
- name: Deploy Linux
- working-directory: ${{github.workspace}}/bin/
shell: bash
run: |
+ cd ${{ github.workspace }}/bin
+ mkdir ./imageformats
+ cp ../qtapng/plugins/imageformats/libqapng.so ./imageformats
cp ../scripts/launch.sh .
chmod +x launch.sh
chmod +x Attorney_Online
- tar -cf Attorney_Online.tar ./*
- rm *.so
- rm *.sh
- rm Attorney_Online
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: Attorney_Online-Linux
- path: ${{github.workspace}}/bin/Attorney_Online.tar
+ path: ${{github.workspace}}/bin