Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
[NO-ISSUE] Add debug logs to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brusdev committed Jun 17, 2024
1 parent f4176f9 commit 72fe459
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
git tag -a ${RELEASE_TAG} -m ${RELEASE_TAG} --force
git push origin $RELEASE_TAG --force
fi
git log
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -50,8 +51,11 @@ jobs:
- name: Push the image
run: |
git log
IMAGE_TAG="$(git describe --exact-match --tags | sed 's/v//')"
echo "IMAGE_TAG: ${IMAGE_TAG}"
ARTEMIS_TAG="artemis.$(podman image inspect $IMAGE_NAME:latest | grep -Po -m 1 '(?<=APACHE_ARTEMIS_VERSION=)[^"]*')"
echo "ARTEMIS_TAG: ${ARTEMIS_TAG}"
podman login --username=${{ secrets.QUAY_USERNAME }} --password=${{ secrets.QUAY_PASSWORD }} quay.io
podman manifest push $IMAGE_NAME:latest docker://quay.io/${{ secrets.QUAY_NAMESPACE }}/$IMAGE_NAME:latest
podman manifest push $IMAGE_NAME:latest docker://quay.io/${{ secrets.QUAY_NAMESPACE }}/$IMAGE_NAME:$IMAGE_TAG
Expand Down

0 comments on commit 72fe459

Please sign in to comment.