Skip to content

Commit

Permalink
fix inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Jun 26, 2024
1 parent e2f7890 commit b17b670
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io --username ${DOCKER_USERNAME} --password-stdin
- name: Tag reth image as "latest"
run: |
docker pull ghcr.io/paradigmxyz/reth:${{ github.events.inputs.tag }}
docker tag ghcr.io/paradigmxyz/reth:${{ github.event.inputs.tag }} ghcr.io/paradigmxyz/reth:latest
docker pull ghcr.io/paradigmxyz/reth:${{ inputs.tag }}
docker tag ghcr.io/paradigmxyz/reth:${{ inputs.tag }} ghcr.io/paradigmxyz/reth:latest
- name: Tag op-reth image as "latest"
run: |
docker pull ghcr.io/paradigmxyz/op-reth:${{ github.events.inputs.tag }}
docker tag ghcr.io/paradigmxyz/op-reth:${{ github.event.inputs.tag }} ghcr.io/paradigmxyz/op-reth:latest
docker pull ghcr.io/paradigmxyz/op-reth:${{ inputs.tag }}
docker tag ghcr.io/paradigmxyz/op-reth:${{ inputs.tag }} ghcr.io/paradigmxyz/op-reth:latest
- name: Push all tags
if: ${{ !github.event.inputs.dryRun }}
if: ${{ !inputs.dryRun }}
run: |
docker image push --all-tags ghcr.io/paradigmxyz/op-reth
docker image push --all-tags ghcr.io/paradigmxyz/reth

0 comments on commit b17b670

Please sign in to comment.