Skip to content

Commit 9feee61

Browse files
committed
fix(admin): clone cicd repo separately
1 parent 76cb4a7 commit 9feee61

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/admin_fetch_updated_apps.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,17 @@ jobs:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
2222
with:
23-
repository: "${{ github.repository_owner }}/cicd-deployment-scripts"
23+
ref: ${{ github.ref_name }}
24+
25+
- name: GitHub Configuration
26+
run: git config --global url."https://oauth2:${{ secrets.GH_TOKEN }}@github.com".insteadOf https://github.com
27+
28+
- name: Clone cicd-deployment-scripts
29+
run: git clone https://github.com/code-kern-ai/cicd-deployment-scripts.git
2430

2531
- name: Fetch Updated Apps
2632
run: |
27-
source ./admin/fetch_updated_apps.sh
33+
source ./cicd-deployment-scripts/admin/fetch_updated_apps.sh
2834
2935
fetch_updated_apps ${{ github.repository_owner }}
3036

0 commit comments

Comments
 (0)