diff --git a/.github/workflows/deploy_helm_chart.yaml b/.github/workflows/deploy_helm_chart.yaml index cbdc7dda5..df5211a81 100644 --- a/.github/workflows/deploy_helm_chart.yaml +++ b/.github/workflows/deploy_helm_chart.yaml @@ -3,12 +3,11 @@ name: Deploy Helm Chart to FNS GKE on: workflow_dispatch: inputs: - name: - description: "Manual trigger for Helm chart deploy" version: - description: "Version of the Helm chart to deploy (optional, defaults to latest snapshot)" + description: "Version of the Helm chart to deploy (optional, defaults to latest snapshot)" required: false - environment: + env: + type: choice description: "Environment to deploy to" required: true default: "test" @@ -46,7 +45,7 @@ jobs: - name: Define Helm Chart version (taken from input or latest snapshot) run: | - VERSION=$(cat ./VERSION) + VERSION=$(cat ./VERSION)-SNAPSHOT if [ -n "${{ github.event.inputs.version }}" ]; then VERSION=${{ github.event.inputs.version }} fi diff --git a/.github/workflows/package_and_push_helm_chart.yaml b/.github/workflows/package_and_push_helm_chart.yaml index 1f2b2217e..1c14044ab 100644 --- a/.github/workflows/package_and_push_helm_chart.yaml +++ b/.github/workflows/package_and_push_helm_chart.yaml @@ -7,8 +7,6 @@ on: - release workflow_dispatch: inputs: - name: - description: "Manual trigger for Helm chart packaging and pushing" version: description: "Version of the Helm chart to push" required: false