From 3db889492a98397c99983bfff4f177e490726022 Mon Sep 17 00:00:00 2001 From: StealWonders <6114858+StealWonders@users.noreply.github.com> Date: Wed, 21 Jun 2023 10:31:14 +0200 Subject: [PATCH] chore: Specify Docker build arguments --- .github/workflows/auto-publish-releases.yml | 3 +++ .github/workflows/deploy-main-in-dev-env.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/auto-publish-releases.yml b/.github/workflows/auto-publish-releases.yml index 73e6575..6c56d95 100644 --- a/.github/workflows/auto-publish-releases.yml +++ b/.github/workflows/auto-publish-releases.yml @@ -30,3 +30,6 @@ jobs: with: push: true # Will only build if this is not here tags: ${{ steps.meta.outputs.tags }} + args: | + --build-arg USER_ID=1000 + --build-arg GROUP_ID=1000 diff --git a/.github/workflows/deploy-main-in-dev-env.yml b/.github/workflows/deploy-main-in-dev-env.yml index c5bce59..b1ce35e 100644 --- a/.github/workflows/deploy-main-in-dev-env.yml +++ b/.github/workflows/deploy-main-in-dev-env.yml @@ -29,6 +29,9 @@ jobs: with: push: true # Will only build if this is not here tags: ${{ steps.meta.outputs.tags }} + args: | + --build-arg USER_ID=1000 + --build-arg GROUP_ID=1000 deploy: needs: [ build ] runs-on: ubuntu-latest