Skip to content

Commit

Permalink
🐛 workflow fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
srajasimman committed Jul 2, 2024
1 parent b931b81 commit 31c4c0a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/dev
options: |
--extra-vars "@users/noc.yml"
--extra-vars "@${{ github.workspace }}/users/noc.yml"
- name: Execute Ansible Playbook (DevOps)
uses: dawidd6/[email protected]
Expand All @@ -33,7 +33,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/dev
options: |
--extra-vars "@users/devops.yml"
--extra-vars "@${{ github.workspace }}/users/devops.yml"
- name: Execute Ansible Playbook (Engeneering)
uses: dawidd6/[email protected]
Expand All @@ -42,7 +42,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/dev
options: |
--extra-vars "@users/engg.yml"
--extra-vars "@${{ github.workspace }}/users/engg.yml"
- name: Execute Ansible Playbook (SA)
uses: dawidd6/[email protected]
Expand All @@ -51,4 +51,4 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/dev
options: |
--extra-vars "@users/sa.yml"
--extra-vars "@${{ github.workspace }}/users/sa.yml"
8 changes: 4 additions & 4 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/qa
options: |
--extra-vars "@users/noc.yml"
--extra-vars "@${{ github.workspace }}/users/noc.yml"
- name: Execute Ansible Playbook (DevOps)
uses: dawidd6/[email protected]
Expand All @@ -33,7 +33,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/qa
options: |
--extra-vars "@users/devops.yml"
--extra-vars "@${{ github.workspace }}/users/devops.yml"
- name: Execute Ansible Playbook (Engeneering)
uses: dawidd6/[email protected]
Expand All @@ -42,7 +42,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/qa
options: |
--extra-vars "@users/engg.yml"
--extra-vars "@${{ github.workspace }}/users/engg.yml"
- name: Execute Ansible Playbook (SA)
uses: dawidd6/[email protected]
Expand All @@ -51,4 +51,4 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/qa
options: |
--extra-vars "@users/sa.yml"
--extra-vars "@${{ github.workspace }}/users/sa.yml"
8 changes: 4 additions & 4 deletions .github/workflows/uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/uat
options: |
--extra-vars "@users/noc.yml"
--extra-vars "@${{ github.workspace }}/users/noc.yml"
- name: Execute Ansible Playbook (DevOps)
uses: dawidd6/[email protected]
Expand All @@ -33,7 +33,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/uat
options: |
--extra-vars "@users/devops.yml"
--extra-vars "@${{ github.workspace }}/users/devops.yml"
- name: Execute Ansible Playbook (Engeneering)
uses: dawidd6/[email protected]
Expand All @@ -42,7 +42,7 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/uat
options: |
--extra-vars "@users/engg.yml"
--extra-vars "@${{ github.workspace }}/users/engg.yml"
- name: Execute Ansible Playbook (SA)
uses: dawidd6/[email protected]
Expand All @@ -51,4 +51,4 @@ jobs:
directory: ${{ github.workspace }}/ansible
inventory: ${{ github.workspace }}/hosts/uat
options: |
--extra-vars "@users/sa.yml"
--extra-vars "@${{ github.workspace }}/users/sa.yml"

0 comments on commit 31c4c0a

Please sign in to comment.