1
0
mirror of https://github.com/karl0ss/ai_image_frame_server.git synced 2025-06-20 15:29:12 +01:00

rework workflow to pickup the latest tag

This commit is contained in:
Karl 2025-05-18 15:02:54 +01:00
parent 423ca357f6
commit aabd19dd5f

@ -3,7 +3,7 @@ name: Build and Publish Docker Image
on: on:
push: push:
branches: [main] branches: [main]
tags: ['*'] # triggers on any tag push tags: ["*"] # triggers on any tag push
workflow_dispatch: workflow_dispatch:
jobs: jobs:
@ -13,6 +13,8 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
fetch-depth: 0 # ensures tags are fetched
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3