From 0690e1551bea29be25947db2ef0b8670368fc5ba Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Thu, 10 Apr 2025 04:34:04 -0700 Subject: [PATCH] ci: add new argument `release` to release workflow --- .github/workflows/deploy-docker-dockerhub.yml | 2 ++ .github/workflows/deploy-docker-gitea.yml | 2 ++ .github/workflows/deploy-docker-github.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/deploy-docker-dockerhub.yml b/.github/workflows/deploy-docker-dockerhub.yml index 80d714f6..216ee75c 100755 --- a/.github/workflows/deploy-docker-dockerhub.yml +++ b/.github/workflows/deploy-docker-dockerhub.yml @@ -452,6 +452,7 @@ jobs: sbom: false build-args: |- ARCH=amd64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }} @@ -503,6 +504,7 @@ jobs: sbom: false build-args: |- ARCH=arm64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }} diff --git a/.github/workflows/deploy-docker-gitea.yml b/.github/workflows/deploy-docker-gitea.yml index 9c0cd03a..6be8f14a 100755 --- a/.github/workflows/deploy-docker-gitea.yml +++ b/.github/workflows/deploy-docker-gitea.yml @@ -576,6 +576,7 @@ jobs: sbom: false build-args: |- ARCH=amd64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }} @@ -627,6 +628,7 @@ jobs: sbom: false build-args: |- ARCH=arm64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }} diff --git a/.github/workflows/deploy-docker-github.yml b/.github/workflows/deploy-docker-github.yml index b6dbed57..f91472a8 100755 --- a/.github/workflows/deploy-docker-github.yml +++ b/.github/workflows/deploy-docker-github.yml @@ -455,6 +455,7 @@ jobs: sbom: false build-args: |- ARCH=amd64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }} @@ -511,6 +512,7 @@ jobs: sbom: false build-args: |- ARCH=arm64 + RELEASE=${{ inputs.DEV_RELEASE == true && 'development' || 'stable' }} VERSION=${{ env.IMAGE_VERSION }} BUILDDATE=${{ env.NOW_DOCKER_LABEL }}