Skip to content

Commit

Permalink
ADD: docker image manual push
Browse files Browse the repository at this point in the history
  • Loading branch information
ram-pi committed Mar 8, 2024
1 parent cc75f6e commit 041d35b
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 3 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/publish-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Create and publish a Docker images triggered by manual workflow dispatch

on:
workflow_dispatch:
inputs:
version:
description: "Docker image version"
required: true
default: "latest"

env:
REGISTRY: ghcr.io
IMAGE_NAME: "jr"
DOCKER-HUB-NAMESPACE: "jrndio"

jobs:
docker-build-ghcr-manual:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker image to ghcr.io
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.version }}

docker-build-dockerhub-manual:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push docker image to ghcr.io
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.DOCKER-HUB-NAMESPACE}}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.version }}
36 changes: 33 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create and publish a Docker image
name: Create and publish a Docker images triggered by tag push

# trigger on creation of a new tag
on:
Expand All @@ -9,9 +9,10 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: "jr"
DOCKER-HUB-NAMESPACE: "jrndio"

jobs:
docker-build:
docker-build-ghcr:
runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -39,4 +40,33 @@ jobs:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/${{ github.repository_owner }}/jr:${{ github.ref_name }}
tags: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}

docker-build-dockerhub:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push docker image to ghcr.io
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.DOCKER-HUB-NAMESPACE}}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}

0 comments on commit 041d35b

Please sign in to comment.