diff --git a/.github/workflows/infra-develop.yml b/.github/workflows/infra-develop.yml index cec482dba4..03f7e00054 100644 --- a/.github/workflows/infra-develop.yml +++ b/.github/workflows/infra-develop.yml @@ -25,6 +25,6 @@ jobs: uses: Azure/pipelines@v1 with: azure-devops-project-url: https://dev.azure.com/${{ secrets.VWS_AZURE_ORGANIZATION_NAME }}/${{ secrets.VWS_AZURE_PROJECT_NAME }} - azure-pipeline-name: ${{ secrets.VWS_AZURE_PIPELINE_NAME }} + azure-pipeline-name: ${{ secrets.VWS_AZURE_PIPELINE_NAME_DEV }} azure-devops-token: ${{ secrets.VWS_AZURE_DEVOPS_TOKEN }} diff --git a/.github/workflows/infra.yml b/.github/workflows/infra.yml index a8b826d880..7f4935c8cf 100644 --- a/.github/workflows/infra.yml +++ b/.github/workflows/infra.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: jobs: - build: + old-build: name: Call Azure Pipeline runs-on: ubuntu-latest steps: @@ -16,3 +16,13 @@ jobs: azure-devops-project-url: https://dev.azure.com/${{ secrets.AZURE_ORGANIZATION_NAME }}/${{ secrets.AZURE_PROJECT_NAME }} azure-pipeline-name: ${{ secrets.AZURE_PIPELINE_NAME }} azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} + build: + name: Call Azure Pipeline + runs-on: ubuntu-latest + steps: + - name: Azure Pipelines Action + uses: Azure/pipelines@v1 + with: + azure-devops-project-url: https://dev.azure.com/${{ secrets.VWS_AZURE_ORGANIZATION_NAME }}/${{ secrets.VWS_AZURE_PROJECT_NAME }} + azure-pipeline-name: ${{ secrets.VWS_AZURE_PIPELINE_NAME_PROD }} + azure-devops-token: ${{ secrets.VWS_AZURE_DEVOPS_TOKEN }}