Azure ARM #37
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
# on: [push, workflow_dispatch] | ||
# name: Azure ARM | ||
# jobs: | ||
# build-and-deploy: | ||
# environment: Azure | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - 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/arm-deploy@v1 | ||
# with: | ||
# resourceGroupName: abc | ||
# template: demo.bicep | ||
# - name: Remove reployed resources | ||
# uses: azure/arm-deploy@v1 | ||
# with: | ||
# scope: subscription | ||
# deploymentName: ${{ github.run_number }} | ||
# region: southcentralus | ||
# template: demo.bicep | ||
# deploymentMode: Complete | ||
# parameters: delete=true | ||
on: [push, workflow_dispatch] | ||
name: Azure ARM | ||
jobs: | ||
call-workflow-in-another-repo: | ||
uses: chenette/workflow/.github/workflows/azure.yml@main | ||
Check failure on line 35 in .github/workflows/main.yml GitHub Actions / .github/workflows/main.ymlInvalid workflow file
|