Skip to content

Commit

Permalink
Add release workflow for tagged commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte-Hansen committed Jan 17, 2025
1 parent 1aeb3f0 commit 3b075d7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release Tagged Docker Image

on:
push:
tags:
- "*"
workflow_dispatch:

jobs:
release-docker-image-jvm:
name: Release Tagged Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build and Push Image
uses: explorviz/deployment/.github/actions/build-and-deploy-quarkus-jvm@main
with:
platforms: "linux/amd64,linux/arm64/v8"
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
image-name: ${{ vars.DOCKER_JVM_IMAGE_NAME }}
image-tag: "${{ github.ref_name }}"

0 comments on commit 3b075d7

Please sign in to comment.