Skip to content

Commit

Permalink
build(app): permissions to executable file
Browse files Browse the repository at this point in the history
varrcan committed Jan 23, 2024

Verified

This commit was signed with the committer’s verified signature.
snyk-bot Snyk bot
1 parent 4b8f60a commit 2192f5e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -85,6 +85,7 @@ jobs:
run: |
cd "$GITHUB_WORKSPACE"/dist &&
mv dl-${{ matrix.os }}-${{ matrix.arch }} dl &&
chmod u+x dl &&
tar -czvf dl-${{ needs.prepare.outputs.version }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz dl
- name: Upload artifact
uses: actions/upload-artifact@v3
@@ -120,8 +121,11 @@ jobs:
with:
name: bin
path: bin
- name: Rename binary
run: cd "$GITHUB_WORKSPACE"/bin && mv dl-linux-${{ matrix.arch }} dl
- name: Prepare binary
run: |
cd "$GITHUB_WORKSPACE"/bin &&
mv dl-linux-${{ matrix.arch }} dl &&
chmod u+x dl
- name: Download nFPM
run: |
cd "$GITHUB_WORKSPACE" &&

0 comments on commit 2192f5e

Please sign in to comment.