From 33e3b343051fb2c656eb9529e299c7bc8fcb68ab Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Sun, 9 Mar 2025 04:32:23 +0100 Subject: [PATCH] N-FIN-88: add new GitHub action --- .../docker-image-build-and-push-manual.yaml | 34 +++++++++++++++++++ .../docker-image-build-and-push.yaml | 3 +- 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/docker-image-build-and-push-manual.yaml diff --git a/.github/workflows/docker-image-build-and-push-manual.yaml b/.github/workflows/docker-image-build-and-push-manual.yaml new file mode 100644 index 0000000..f4ed473 --- /dev/null +++ b/.github/workflows/docker-image-build-and-push-manual.yaml @@ -0,0 +1,34 @@ +name: Development Deployment + +on: + workflow_dispatch: + inputs: + image_tag: + required: true + type: string + description: Docker image tag + +jobs: + build-and-push: + runs-on: ubuntu-latest + + steps: + + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push image + uses: docker/build-push-action@v5 + with: + push: true + platforms: linux/amd64 + tags: markusthielker/next-finances:development, markusthielker/next-finances:${{ github.event.inputs.image_tag }}-dev diff --git a/.github/workflows/docker-image-build-and-push.yaml b/.github/workflows/docker-image-build-and-push.yaml index 5c698ae..44afac4 100644 --- a/.github/workflows/docker-image-build-and-push.yaml +++ b/.github/workflows/docker-image-build-and-push.yaml @@ -1,7 +1,6 @@ -name: Docker Image Build and Push +name: Production Deployment on: - workflow_dispatch: push: tags: [ "v*.*.*" ]