fix: remove temp docker tag action (#9128)

This commit is contained in:
Dan Cline
2024-06-26 13:31:05 -04:00
committed by GitHub
parent 4308e1b22b
commit cbdd56af6f

View File

@ -1,51 +0,0 @@
# Tags the given docker image as latest
name: docker-tag
on:
workflow_dispatch:
inputs:
dryRun:
description: 'Whether or not to perform a dry run'
required: true
default: 'true'
type: boolean
tag:
description: 'The tag to push as latest'
required: true
type: string
env:
REPO_NAME: ${{ github.repository_owner }}/reth
IMAGE_NAME: ${{ github.repository_owner }}/reth
OP_IMAGE_NAME: ${{ github.repository_owner }}/op-reth
CARGO_TERM_COLOR: always
DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/reth
OP_DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/op-reth
DOCKER_USERNAME: ${{ github.actor }}
jobs:
build:
name: build and push
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Log in to Docker
run: |
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:${{ 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:${{ inputs.tag }}
docker tag ghcr.io/paradigmxyz/op-reth:${{ inputs.tag }} ghcr.io/paradigmxyz/op-reth:latest
- name: Push all tags
if: ${{ !inputs.dryRun }}
run: |
docker image push --all-tags ghcr.io/paradigmxyz/op-reth
docker image push --all-tags ghcr.io/paradigmxyz/reth