Skip to content

Commit

Permalink
zip the artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
clbx committed Jan 12, 2024
1 parent 9da8248 commit d532e2b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,20 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v4

- name: Zip linux
uses: montudor/action-zip@v1
with:
args: zip -qq -r kubectl-browse-pvc-linux.zip -d kubectl-browse-pvc-linux

- name: Zip darwin
uses: montudor/action-zip@v1
with:
args: zip -qq -r kubectl-browse-pvc-darwin.zip -d kubectl-browse-pvc-darwin


- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: "kubectl-browse-pvc-darwin,kubectl-browse-pvc-linux"
artifacts: "kubectl-browse-pvc-darwin.zip,kubectl-browse-pvc-linux.zip"

0 comments on commit d532e2b

Please sign in to comment.