From 702aa0899b4792505feb9b258a4e51fa173c3971 Mon Sep 17 00:00:00 2001 From: ram-pi Date: Thu, 25 Jul 2024 12:58:24 +0200 Subject: [PATCH] Create publish-manual.yml --- .github/workflows/publish-manual.yml | 74 ++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 .github/workflows/publish-manual.yml diff --git a/.github/workflows/publish-manual.yml b/.github/workflows/publish-manual.yml new file mode 100644 index 00000000..faa46629 --- /dev/null +++ b/.github/workflows/publish-manual.yml @@ -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 }}