Skip to content

Commit

Permalink
Merge pull request #113 from local-deploy/rc
Browse files Browse the repository at this point in the history
fix(app): permissions to executable file
  • Loading branch information
varrcan authored Jan 23, 2024
2 parents 4b8f60a + 2192f5e commit 99d51c8
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
Expand Up @@ -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
Expand Down Expand Up @@ -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" &&
Expand Down

0 comments on commit 99d51c8

Please sign in to comment.