Skip to content

Commit

Permalink
build(app): permissions to executable file
Browse files Browse the repository at this point in the history
  • Loading branch information
varrcan committed Jan 24, 2024
1 parent 1863505 commit 90d74bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
cd "$GITHUB_WORKSPACE"/dist &&
mv dl-${{ matrix.os }}-${{ matrix.arch }} dl &&
chmod u+x dl &&
chmod a+x dl &&
tar -czvf dl-${{ needs.prepare.outputs.version }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz dl
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
run: |
cd "$GITHUB_WORKSPACE"/bin &&
mv dl-linux-${{ matrix.arch }} dl &&
chmod u+x dl
chmod a+x dl
- name: Download nFPM
run: |
cd "$GITHUB_WORKSPACE" &&
Expand Down

0 comments on commit 90d74bd

Please sign in to comment.