Skip to content

Commit

Permalink
Docker build producing non executable builds (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartendeKruijf committed Mar 11, 2024
1 parent ec6629a commit d70afcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
run: |
mkdir -p bin
mv ${{ github.sha }}/* ./bin/
chmod +x bin/soarca-*
- name: Build image
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ jobs:
with:
pattern: ${{ github.sha }}

- name: Move files to bin folder
- name: Move files to bin folder and make executable
run: |
mkdir -p bin
mv ${{ github.sha }}/* ./bin/
chmod +x bin/soarca-*
- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down

0 comments on commit d70afcc

Please sign in to comment.