Skip to content

Commit c5171bc

Browse files
authored
Added exec permission to initialize-repository.sh (#51)
1 parent ef3e35d commit c5171bc

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/2-setup-azure-environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ jobs:
107107

108108
# Pull main.
109109
- name: Pull main
110-
run: ./.github/script/pull-main.sh
110+
run: |
111+
chmod +x ./.github/script/initialize-repository.sh
112+
./.github/script/initialize-repository.sh
111113
env:
112114
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113115

.github/workflows/3-spinup-environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ jobs:
6363

6464
# Pull main.
6565
- name: Pull main
66-
run: ./.github/script/pull-main.sh
66+
run: |
67+
chmod +x ./.github/script/initialize-repository.sh
68+
./.github/script/initialize-repository.sh
6769
env:
6870
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6971

.github/workflows/4-deploy-to-staging-environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161

6262
# Pull main.
6363
- name: Pull main
64-
run: ./.github/script/pull-main.sh
64+
run: |
65+
chmod +x ./.github/script/initialize-repository.sh
66+
./.github/script/initialize-repository.sh
6567
env:
6668
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6769

0 commit comments

Comments
 (0)