Skip to content

Commit

Permalink
ci: fix exec permission on binaries artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
damoun committed Jul 29, 2024
1 parent f8bac41 commit a307eff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ jobs:
with:
name: build
path: .build
# See https://github.com/actions/upload-artifact/issues/38
- name: Fix permission on binaries artifacts
run: find . -type f -name 'twitch_exporter' -exec chmod +x {} +
- run: make docker
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
with:
name: build
path: .build
# See https://github.com/actions/upload-artifact/issues/38
- name: Fix permission on binaries artifacts
run: find . -type f -name 'twitch_exporter' -exec chmod +x {} +
- name: Login to Docker Hub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
Expand Down

0 comments on commit a307eff

Please sign in to comment.