File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,21 @@ jobs:
62
62
uses : actions/setup-python@v5
63
63
with :
64
64
python-version : ${{ env.PYTHON_VERSION }}
65
-
65
+
66
66
- name : Install Dependencies
67
67
run : python -m pip install pip-tools
68
68
69
+ - name : Clone ${{ matrix.app }}
70
+ run : git clone https://oauth2:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository_owner }}/${{ matrix.app }}.git
71
+
69
72
- name : Compile Requirements
70
- run : pip-compile submodules/parent-images/requirements/${{ matrix.parent_image_type }}-requirements.in
73
+ run : |
74
+ pip-compile \
75
+ --output-file ${{ matrix.app }}/requirements/${{ matrix.parent_image_type }}-requirements.txt \
76
+ submodules/parent-images/requirements/${{ matrix.parent_image_type }}-requirements.in
71
77
72
- - name : Create PR - ${{ matrix.app }}
78
+ - name : Perform Edit/Git Operations
73
79
run : |
74
- git clone https://oauth2:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository_owner }}/${{ matrix.app }}.git
75
80
cd ${{ matrix.app }}
76
81
77
82
git config user.email "devtools@kern.ai"
You can’t perform that action at this time.
0 commit comments