We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7c41c commit c394a41Copy full SHA for c394a41
.github/workflows/fatimage.yml
@@ -46,7 +46,9 @@ jobs:
46
47
- name: Write s3cmd configuration
48
run: |
49
- echo "${{ secrets['ARCUS_S3CFG'] }}" > ~/.s3cfg
+ . venv/bin/activate
50
+ S3_CREDS=$(openstack ec2 credentials create)
51
+ echo "$S3_CREDS" > ~/.s3cfg
52
shell: bash
53
54
- name: Install s3cmd
@@ -56,7 +58,7 @@ jobs:
56
58
- name: Check for image in Arcus S3 bucket
57
59
id: s3_ls
60
-
61
62
TARGET_IMAGE=$(jq --arg version "${{ matrix.build }}" -r '.cluster_image[$version]' "${{ env.IMAGE_PATH }}")
63
echo "TARGET_IMAGE=${TARGET_IMAGE}" >> "$GITHUB_ENV"
64
echo "target-image-${{ matrix.build }}=${TARGET_IMAGE}" >> "$GITHUB_OUTPUT"
0 commit comments