feat(ci): emit release-manifest fragment artifact (H3)

This commit is contained in:
2026-06-11 22:02:29 +02:00
parent 97f8427c4b
commit 4d7515d22a
2 changed files with 45 additions and 0 deletions
+11
View File
@@ -38,3 +38,14 @@ jobs:
run: |
echo "${REGISTRY_PASSWORD}" | docker login "${REGISTRY}" -u "${REGISTRY_USER}" --password-stdin
docker push ${REGISTRY}/${IMAGE}:${{ steps.tag.outputs.sha }}
- name: Emit release fragment
run: |
FRAG_REPO=sow-tools \
FRAG_SHA=${{ steps.tag.outputs.sha }} \
FRAG_ARTIFACT="${REGISTRY}/${IMAGE}:${{ steps.tag.outputs.sha }}" \
FRAG_URL="${REGISTRY}/${IMAGE}" \
FRAG_RUN_ID=${{ gitea.run_id }} \
./scripts/emit-release-fragment.sh
- uses: actions/upload-artifact@v3
with: { name: release-fragment, path: release-fragment.json }