remove un used step #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# File: .github/workflows/workflow.yml | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout the repo | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Set up Azure credentials | |
uses: Azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Get secrets from Azure Key Vault | |
id: keyvault | |
uses: Azure/get-keyvault-secrets@v1 | |
with: | |
keyvault: "kvvirtualteacher" | |
secrets: 'subscription-id' # comma separated list of secret keys that need to be fetched from the Key Vault | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: | |
terraform_version: 1.0.11 |