Skip to content

ci(wkf): update step name #8

ci(wkf): update step name

ci(wkf): update step name #8

Workflow file for this run

# 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
- run : echo ${{ steps.keyvault.outputs.subscription-id }}