Compare commits

...

2 Commits

Author SHA1 Message Date
ThompsonNye
a1efa7417a Allow manual runs 2024-09-05 14:00:10 +02:00
ThompsonNye
8428428db9 Fix docker image tag 2024-09-05 14:00:04 +02:00

View File

@@ -5,6 +5,7 @@ on:
workflow_run:
types:
- requested
workflow_dispatch:
jobs:
build:
@@ -37,5 +38,5 @@ jobs:
- name: Build and push, channel 'stable'
run: |
export CHANNEL=stable
export IMAGE_WITH_TAG=${{ vars.DOCKER_REGISTRY_HOST }}/${{ vars.DOCKER_REPO_AND_IMAGE }}:stable
export IMAGE_WITH_TAG=${{ vars.DOCKER_REGISTRY_HOST }}/${{ vars.DOCKER_REPO_AND_IMAGE }}:$CHANNEL
docker buildx build . --build-arg CHANNEL=$CHANNEL -t $IMAGE_WITH_TAG --no-cache --push