diff options
| author | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-09 12:22:46 -0600 |
|---|---|---|
| committer | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-28 11:05:42 -0600 |
| commit | daa3e173fa7e1fe5885071f6461db280b387e4e0 (patch) | |
| tree | 3bee70927271a2c4e66776726eca78073ede4091 /.github | |
| parent | b9e6918b219c67bf21429305bdf5a49e007d3156 (diff) | |
Compress binary
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 921b0d0b..e19e0cfc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,8 +83,13 @@ jobs: shell: bash run: strip -s Attorney_Online + - name: Compress + working-directory: ${{github.workspace}}/build + shell: bash + run: tar czvf Attorney_Online-linux-x86_64.tgz Attorney_Online + - name: Upload Artifact uses: actions/upload-artifact@v2 with: name: Attorney_Online - path: ${{github.workspace}}/build/Attorney_Online + path: ${{github.workspace}}/build/Attorney_Online-linux-x86_64.tgz |
