Skip to content

Commit

Permalink
fix: format docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Jun 16, 2023
1 parent 19c2c7c commit 9bea32d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/docker_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
needs: docker
runs-on: ubuntu-latest-16-core
steps:
- name: Set environment
run: |
# It's fine to assume a single tag. Our tagging strategy follows a 1:1 mapping of image:tag
tags=${{ needs.docker.outputs.tags }}
echo "docker_tag=${tags#*:}" >> $GITHUB_ENV
shell: bash

- uses: convictional/[email protected]
with:
owner: topos-network
Expand All @@ -31,4 +38,4 @@ jobs:
workflow_file_name: frontend:erc20-messaging.yml
ref: main
wait_interval: 60
client_payload: '{ "topos-smart-contracts-docker-tag": "${{ needs.docker.outputs.tags }}" }'
client_payload: '{ "topos-smart-contracts-docker-tag": "${{ env.docker_tag }}" }'

0 comments on commit 9bea32d

Please sign in to comment.