Skip to content

Commit

Permalink
Fix upload artifacts steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Enaraque committed Sep 2, 2024
1 parent db51306 commit 96da1d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/packages_builder_ami.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
run: |
mkdir -p $GITHUB_WORKSPACE/instance_info
cp -r /tmp/allocatorvm_ami $GITHUB_WORKSPACE/instance_info
zip -r -P ${{ secrets.ZIP_ARTIFACTS_PASSWORD }} $GITHUB_WORKSPACE/instance_info.zip $GITHUB_WORKSPACE/instance_info
zip -P "${{ secrets.ZIP_ARTIFACTS_PASSWORD }}" -r $GITHUB_WORKSPACE/instance_info.zip $GITHUB_WORKSPACE/instance_info
- name: List artifacts directory
if: always()
Expand All @@ -201,4 +201,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: instance_info
path: $GITHUB_WORKSPACE/instance_info.zip
path: $GITHUB_WORKSPACE/instance_info.zip
compression-level: 0

0 comments on commit 96da1d2

Please sign in to comment.