Skip to content

Commit 9f58d02

Browse files
committed
updated workflows
1 parent 2278a15 commit 9f58d02

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dataProductDeploymentDev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919

2020
jobs:
2121
validation_dev:
22-
uses: ${{ github.repository }}/.github/workflows/templates/validation.yml@${{github.sha}}
22+
uses: ./.github/workflows/templates/validation.yml
2323
name: "Validation of IaC templates - Dev"
2424
with:
2525
environment: ${{ env.DEV_ENVIRONMENT_NAME }}
@@ -30,7 +30,7 @@ jobs:
3030
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
3131

3232
deployment_dev:
33-
uses: ${{ github.repository }}/.github/workflows/templates/deployment.yml@${{github.sha}}
33+
uses: ./.github/workflows/templates/deployment.yml
3434
name: "Deployment of IaC templates - Dev"
3535
needs: [ validation_dev ]
3636
if: github.event_name == 'push'

.github/workflows/dataProductDeploymentTestProd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
validation_test:
21-
uses: "${{ github.repository }}/.github/workflows/templates/validation.yml@${{ github.ref_name }}"
21+
uses: ./.github/workflows/templates/validation.yml
2222
name: "Validation of IaC templates - Test"
2323
with:
2424
environment: ${{ env.TEST_ENVIRONMENT_NAME }}
@@ -29,7 +29,7 @@ jobs:
2929
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
3030

3131
validation_prod:
32-
uses: "${{ github.repository }}/.github/workflows/templates/validation.yml@${{ github.ref_name }}"
32+
uses: ./.github/workflows/templates/validation.yml
3333
name: "Validation of IaC templates - Prod"
3434
needs: [ validation_test ]
3535
with:
@@ -41,7 +41,7 @@ jobs:
4141
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4242

4343
deployment_test:
44-
uses: "${{ github.repository }}/.github/workflows/templates/deployment.yml@${{ github.ref_name }}"
44+
uses: ./.github/workflows/templates/deployment.yml
4545
name: "Deployment of IaC templates - Test"
4646
needs: [ validation_prod ]
4747
if: github.event_name == 'release'
@@ -54,7 +54,7 @@ jobs:
5454
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
5555

5656
deployment_prod:
57-
uses: "${{ github.repository }}/.github/workflows/templates/deployment.yml@${{ github.ref_name }}"
57+
uses: ./.github/workflows/templates/deployment.yml
5858
name: "Deployment of IaC templates - Prod"
5959
needs: [ deployment_test ]
6060
if: github.event_name == 'release'

0 commit comments

Comments
 (0)