N-FIN-88: add new GitHub action

This commit is contained in:
Markus Thielker 2025-03-09 04:32:23 +01:00
parent 3c3ad5ee38
commit 33e3b34305
2 changed files with 35 additions and 2 deletions

View file

@ -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

View file

@ -1,7 +1,6 @@
name: Docker Image Build and Push
name: Production Deployment
on:
workflow_dispatch:
push:
tags: [ "v*.*.*" ]