Skip to content

Create docker-image.yml #4666

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

Closed
wants to merge 1 commit into from
Closed
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
24 changes: 24 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Push DockerHub image to GHCR

on:
workflow_dispatch:

jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Pull from Docker Hub
run: docker pull iotex/iotex-core:v2.2.1-rc9

- name: Retag image for GHCR
run: docker tag iotex/iotex-core:v2.2.1-rc9 ghcr.io/iotexproject/iotex-core:v2.2.1-rc9

- name: Push to GHCR
run: docker push ghcr.io/iotexproject/iotex-core:v2.2.1-rc9