From 33ab3774f343da3c805bded6ff71606f2f2e431f Mon Sep 17 00:00:00 2001 From: er-santosh <101961700+er-santosh@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:04:53 +0545 Subject: [PATCH] Update cd-manual.yml Added allowed frame url build arg --- .github/workflows/cd-manual.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index 7b55e9833..2ed6ae4ec 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -7,6 +7,10 @@ on: type: string description: Version required: true + allowed_frame_url: + type: string + description: Allowed Frame Url + required: true jobs: build: @@ -25,7 +29,7 @@ jobs: with: image: umami tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest - buildArgs: DATABASE_TYPE=${{ matrix.db-type }} + buildArgs: DATABASE_TYPE=${{ matrix.db-type }} ALLOWED_FRAME_URLS=${{ inputs.allowed_frame_url || "https://deploy.polothemes.com"}} registry: ghcr.io multiPlatform: true platform: linux/amd64,linux/arm64 @@ -40,4 +44,4 @@ jobs: # buildArgs: DATABASE_TYPE=${{ matrix.db-type }} # registry: docker.io # username: ${{ secrets.DOCKER_USERNAME }} - # password: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file + # password: ${{ secrets.DOCKER_PASSWORD }}