From e2a139b3424439ce393143dffc81bdb1e1d1d1a9 Mon Sep 17 00:00:00 2001 From: cedricd Date: Fri, 10 May 2024 10:06:42 +0200 Subject: [PATCH] chore: Update Docker image build and push paths for services in docker-images.yml --- .github/workflows/docker-images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index ad53e36..1c00ac7 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -24,11 +24,11 @@ jobs: - name: install jq run: sudo apt-get install jq - - name: Extract all existing tags for the repo using gh api + - name: Extract all existing tags and sha's for the repo using gh api env: GH-TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - export TAGS=$(curl -s https://api.github.com/repos/vlizBE/vocabserver-app/tags | jq -r '.[].name') + export TAGS=$(curl -s https://api.github.com/repos/vlizBE/vocabserver-app/tags | jq -c '[.[] | {tag_name: .name, sha: .commit.sha}]') echo $TAGS - name: Build the Docker images and Push them to the registry-namespace indicated in REG_NS