diff options
author | Paolo Asperti <[email protected]> | 2022-09-05 09:36:03 +0200 |
---|---|---|
committer | Paolo Asperti <[email protected]> | 2022-09-05 09:36:03 +0200 |
commit | 1b440b61e7f83f289454e9eec4cc6b488b10ec08 (patch) | |
tree | 87bb07e07b08bbe5eb76f836939648069ad1a269 /.github | |
parent | 6aa0019f8dcfe8034aba5d155628c83fd5d57f42 (diff) | |
download | rustdesk-server-1b440b61e7f83f289454e9eec4cc6b488b10ec08.tar.gz rustdesk-server-1b440b61e7f83f289454e9eec4cc6b488b10ec08.zip |
Artifacts in zip should be executables
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 461f80c..4ef98a9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -59,6 +59,9 @@ jobs: # - name: Run tests # run: cargo test --verbose + - name: Exec chmod + run: chmod -v a+x target/${{ matrix.job.target }}/release/* + - name: Publish Artifacts uses: actions/upload-artifact@v3 with: @@ -92,6 +95,9 @@ jobs: name: binaries-${{ matrix.job.name }} path: ${{ matrix.job.name }} + - name: Exec chmod + run: chmod -v a+x ${{ matrix.job.name }}/* + - name: Pack files (${{ matrix.job.name }}) run: | sudo apt update |