Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,19 @@ jobs:
needs: build # wait for other job to finish g

steps:
- uses: actions/download-artifact@v4
with:
name: my-artifact
path: artifacts/

- name: Azure login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenate-id: ${{ secrets.AZURE_TENATE_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenate-id: ${{ secrets.AZURE_TENATE_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}


- uses: actions/download-artifact@v4
with:
name: my-artifact
path: artifacts/

# Deploy to Azure Web apps
- name: 'Deploy to Azure App Service'
Expand Down
Loading