Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add temporary docker tag action #9126

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/docker-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# 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
Loading