Skip to content

Commit

Permalink
Merge pull request #1216 from openziti/set-exec-filemode
Browse files Browse the repository at this point in the history
set execute filemode on ziti binaries for macOS and Linux
  • Loading branch information
qrkourier authored Jul 19, 2023
2 parents 1ad40b5 + 124fb5c commit 37f0164
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,20 @@ jobs:
name: windows-release-${{ github.run_id }}
path: release/

- name: List downloaded release artifacts
run: |
ls -lR release/
- name: Restore execute filemode on macOS and Linux release artifacts before publishing
run: |
find ./release \
-path "./release/*/darwin/ziti" \
-o \
-path "./release/*/linux/ziti" \
-type f \
-print0 \
| xargs -0 chmod -c +x
- name: Install Jfrog CLI
uses: jfrog/setup-jfrog-cli@v3
with:
Expand Down

0 comments on commit 37f0164

Please sign in to comment.