Hi,
I was trying to use azure pass pipeline variables from github actions, Though I am not seeing any error on Github actions side the azure pipeline is not receiving the variables that I set.
deploy-using-azure-pipelines:
needs: build-and-package
runs-on: ubuntu-latest
steps:
- name: 'Trigger an Azure Pipeline to deploy the app to ARO'
uses: Azure/pipelines@v1
with:
azure-devops-project-url: 'https://dev.azure.com/OrganizationName/ProjectName'
azure-pipeline-name: 'digital-webapp'
azure-devops-token: '${{ secrets.AZURE_DEVOPS_TOKEN }}'
azure-pipeline-variables: '{ "totalVal": ${{env.TOTAL_COUNT}} , "stage": ${{env.STAGE}} }'