Skip to content

Commit

Permalink
Fix permissions on downloaded artifacts:
Browse files Browse the repository at this point in the history
Github Actions does not preserve file permissions
on upload. This means all docker images are not
working before this commit.

Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Feb 3, 2021
1 parent b24fdf4 commit 9a64bda
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ jobs:
with:
name: ${{ matrix.binary}}
path: cmd/${{ matrix.binary }}
- name: Fix Permissions
run: chmod +x cmd/${{ matrix.binary }}
- name: ${{ matrix.repository }}
uses: docker/build-push-action@v2
with:
Expand Down

0 comments on commit 9a64bda

Please sign in to comment.