File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,13 +110,13 @@ jobs:
110
110
- name : Clone ${{ matrix.app }}
111
111
run : |
112
112
git clone https://oauth2:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository_owner }}/${{ matrix.app }}.git
113
- cd ${{ matrix.app }}
113
+ cd ${{ github.workspace }}/${{ matrix.app }}
114
114
115
115
git config user.email "devtools@kern.ai"
116
116
git config user.name "GitHub Actions"
117
117
118
118
git checkout -b ${{ needs.configure-branch-name.outputs.gh_head_ref }} || git checkout ${{ needs.configure-branch-name.outputs.gh_head_ref }}
119
- git pull origin ${{ needs.configure-branch-name.outputs.gh_head_ref }} && git push origin ${{ needs.configure-branch-name.outputs.gh_head_ref }}
119
+ git push origin ${{ needs.configure-branch-name.outputs.gh_head_ref }} && git pull origin ${{ needs.configure-branch-name.outputs.gh_head_ref }}
120
120
121
121
- name : Compile Requirements
122
122
run : |
@@ -130,7 +130,7 @@ jobs:
130
130
131
131
- name : Perform Edit/Git Operations
132
132
run : |
133
- cd ${{ matrix.app }}
133
+ cd ${{ github.workspace }}/${{ matrix.app }}
134
134
135
135
git add requirements*
136
136
git commit -m "ci: update ${{ matrix.parent_image_type }}-requirements.txt" || true
You can’t perform that action at this time.
0 commit comments