mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-10 07:50:08 -04:00
ci: manual e2e: github.event.inputs -> inputs
(cherry picked from commit 7cc8f2c884
)
This commit is contained in:
parent
edfe6f7a9e
commit
dbc943ae7c
1 changed files with 4 additions and 4 deletions
8
.github/workflows/e2e-test-manual.yml
vendored
8
.github/workflows/e2e-test-manual.yml
vendored
|
@ -244,18 +244,18 @@ jobs:
|
||||||
go-version: "1.19.4"
|
go-version: "1.19.4"
|
||||||
|
|
||||||
- name: Set up gcloud CLI (macOS)
|
- name: Set up gcloud CLI (macOS)
|
||||||
if: github.event.inputs.cloudProvider == 'gcp' && runner.os == 'macOS'
|
if: inputs.cloudProvider == 'gcp' && runner.os == 'macOS'
|
||||||
uses: google-github-actions/setup-gcloud@d51b5346f85640ec2aa2fa057354d2b82c2fcbce # v1.0.1
|
uses: google-github-actions/setup-gcloud@d51b5346f85640ec2aa2fa057354d2b82c2fcbce # v1.0.1
|
||||||
|
|
||||||
- name: Login to Azure
|
- name: Login to Azure
|
||||||
if: github.event.inputs.cloudProvider == 'azure'
|
if: inputs.cloudProvider == 'azure'
|
||||||
uses: ./.github/actions/login_azure
|
uses: ./.github/actions/login_azure
|
||||||
with:
|
with:
|
||||||
azure_credentials: ${{ secrets.AZURE_E2E_CREDENTIALS }}
|
azure_credentials: ${{ secrets.AZURE_E2E_CREDENTIALS }}
|
||||||
|
|
||||||
- name: Create Azure resource group
|
- name: Create Azure resource group
|
||||||
id: az_resource_group_gen
|
id: az_resource_group_gen
|
||||||
if: github.event.inputs.cloudProvider == 'azure'
|
if: inputs.cloudProvider == 'azure'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
uuid=$(uuidgen)
|
uuid=$(uuidgen)
|
||||||
|
@ -294,7 +294,7 @@ jobs:
|
||||||
kubeconfig: ${{ steps.e2e_test.outputs.kubeconfig }}
|
kubeconfig: ${{ steps.e2e_test.outputs.kubeconfig }}
|
||||||
|
|
||||||
- name: Always destroy Azure resource group
|
- name: Always destroy Azure resource group
|
||||||
if: always() && github.event.inputs.cloudProvider == 'azure'
|
if: always() && inputs.cloudProvider == 'azure'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
az group delete \
|
az group delete \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue