Skip to content

Commit

Permalink
try without .zip extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian-Nara committed Jun 17, 2024
1 parent bcaeecd commit 3643019
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/actions/build_ami/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,16 @@ runs:
repository: IABTechLab/uid2-operator
pattern: 'aws-${{ inputs.identity_scope }}-deployment-files-*'
run-id: ${{ inputs.operator_run_number }}
path: ./scripts/aws/uid2-operator-ami/artifacts
path: ./download/artifacts

- name: Unzip artifacts
if: ${{ inputs.operator_release == '' }}
shell: bash
run: |
ARTIFACTS='${{ steps.get_eif_for_run.outputs.artifacts }}'
FILE=$(echo $ARTIFACTS | jq -r '.[0].name')
unzip -o -d ./scripts/aws/uid2-operator-ami/artifacts $FILE
rm $FILE
- name: Configure UID2 AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit 3643019

Please sign in to comment.