Skip to content

Commit

Permalink
chore: Update Docker image build and push paths for services in docke…
Browse files Browse the repository at this point in the history
…r-images.yml
  • Loading branch information
cedricdcc committed May 10, 2024
1 parent c3cef9b commit e2a139b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2a139b

Please sign in to comment.