👷 Automate docker images creation

This commit is contained in:
Yamila Moreno
2025-10-01 13:41:03 +02:00
parent bd4d576172
commit 5c8b3ac3d6
3 changed files with 18 additions and 18 deletions

View File

@@ -13,9 +13,9 @@ jobs:
build_wasm: "yes"
build_storybook: "yes"
# build-docker:
# needs: build-bundle
# uses: ./.github/workflows/build-docker.yml
# secrets: inherit
# with:
# gh_ref: "develop"
build-docker:
needs: build-bundle
uses: ./.github/workflows/build-docker.yml
secrets: inherit
with:
gh_ref: "develop"

View File

@@ -13,9 +13,9 @@ jobs:
build_wasm: "yes"
build_storybook: "yes"
# build-docker:
# needs: build-bundle
# uses: ./.github/workflows/build-docker.yml
# secrets: inherit
# with:
# gh_ref: "staging"
build-docker:
needs: build-bundle
uses: ./.github/workflows/build-docker.yml
secrets: inherit
with:
gh_ref: "staging"

View File

@@ -14,12 +14,12 @@ jobs:
build_wasm: "no"
build_storybook: "yes"
# build-docker:
# needs: build-bundle
# uses: ./.github/workflows/build-docker.yml
# secrets: inherit
# with:
# gh_ref: ${{ github.ref_name }}
build-docker:
needs: build-bundle
uses: ./.github/workflows/build-docker.yml
secrets: inherit
with:
gh_ref: ${{ github.ref_name }}
# publish-final-tag:
# if: ${{ !contains(github.ref_name, '-RC') && !contains(github.ref_name, '-alpha') && !contains(github.ref_name, '-beta') && contains(github.ref_name, '.') }}