Hi, I've been trying to deploy a static web app from Azure, and I believe I have all the pieces set up for a service principle with OIDC, but am still seeing the following error:
Here is what my workflow file looks like:
`jobs:
build_job:
runs-on: self-hosted
steps:
I don't know what I could be doing wrong, since I am not seeing any errors when I deploy my app to preview, and my runner is just telling me that my job failed.
Hi, I've been trying to deploy a static web app from Azure, and I believe I have all the pieces set up for a service principle with OIDC, but am still seeing the following error:
Here is what my workflow file looks like: `jobs: build_job: runs-on: self-hosted steps:
name: Log in to Azure uses: Azure/login@v2 with: client-id: ${{ secrets.AZURE_CLIENT_ID }} tenant-id: ${{ secrets.AZURE_TENANT_ID }} subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} enable-AzPSSession: true
name: Install Azure CLI Latest uses: Azure/cli@v2.1.0 with: azcliversion: latest inlineScript: | az account show az storage -h
name: Install Azure Static Web Apps CLI run: npm install -g @azure/static-web-apps-cli`
I don't know what I could be doing wrong, since I am not seeing any errors when I deploy my app to preview, and my runner is just telling me that my job failed.