Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/manual-proxy-environment-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ on:
- internal-dev
- int
- prod
build_sandbox:
description: Build sandbox container?
required: false
default: false
type: boolean

permissions:
contents: read
Expand Down Expand Up @@ -63,7 +68,7 @@ jobs:
echo "does_pull_request_exist=false" >> $GITHUB_OUTPUT
echo "pr_number=" >> $GITHUB_OUTPUT
APIM_ENV="$ENVIRONMENT"
$ENVIRONMENT='main'
ENVIRONMENT="main"
fi

echo "ENVIRONMENT=$ENVIRONMENT" >> $GITHUB_ENV
Expand All @@ -79,5 +84,5 @@ jobs:
environment: "${{ env.ENVIRONMENT }}"
apimEnv: "${{ env.APIM_ENV }}"
runId: "${{ github.run_id }}"
buildSandbox: false
buildSandbox: ${{ inputs.build_sandbox }}
releaseVersion: ${{ github.ref_name }}
2 changes: 1 addition & 1 deletion .github/workflows/stage-3-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
apimEnv: "internal-dev-sandbox"
runId: "${{ github.run_id }}"
buildSandbox: true
releaseVersion: ${{ github.ref_name }}
releaseVersion: ${{ github.head_ref || github.ref_name }}

# artefact-1:
# name: "Artefact 1"
Expand Down
Loading