Skip to content

npm update in pass-converter #5

npm update in pass-converter

npm update in pass-converter #5

Workflow file for this run

name: CI with OpenID Connect
on:
push:
branches: [ "main" ]
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Check failure on line 15 in .github/workflows/azure.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/azure.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- name: 'Az CLI login'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: 'Run Azure CLI commands'
run: |
az account show
az group list
pwd
- uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- uses: azure/CLI@v1
with:
azcliversion: latest
inlineScript: |
az storage blob upload-batch --account-name ${{ secrets.STORAGE_ACCOUNT_NAME }} --auth-mode key -d '$web' -s .
- name: logout
run: |
az logout
if: always()