Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/fatimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ jobs:
. venv/bin/activate
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}" || true

- name: Set image properties
run: |
. venv/bin/activate
. dev/image-set-properties.sh "${{ steps.manifest.outputs.image-id }}"

- name: Upload manifest artifact
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/s3-image-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,8 @@ jobs:
echo "No image ID found, skipping cleanup."
fi
shell: bash

- name: Set Glance image properties correctly for Slurm images
run: |
. venv/bin/activate
. dev/image-set-properties.sh "${{ env.TARGET_IMAGE }}"
Loading