Skip to content

Commit

Permalink
explicitly zip the file
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Nov 14, 2024
1 parent cb59e86 commit 9888068
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build_app_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,18 @@ jobs:
with:
name: app_runner_linux_x86_64
path: app_runner_linux_x86_64
- name: Zip for release
run: |
cd app_runner_linux_x86_64
zip -r app_runner_linux_x86_64.zip *
ls -l
- name: Print folder structure
run: |
tree
- name: Upload Release Assets
uses: softprops/action-gh-release@v1
with:
files: |
app_runner_linux_x86_64/*
app_runner_linux_x86_64/app_runner_linux_x86_64.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9888068

Please sign in to comment.