Skip to content

Commit

Permalink
Create publish-manual.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ram-pi authored Jul 25, 2024
1 parent 80a5671 commit 702aa08
Showing 1 changed file with 74 additions and 0 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 }}

0 comments on commit 702aa08

Please sign in to comment.