@@ -25,22 +25,25 @@ jobs:
25
25
- name : Make changes to target repository
26
26
id : changes
27
27
run : |
28
- cp releases/${{ inputs.version }}/reproschema.jsonld reproschema-py/reproschema.jsonld
28
+ # updating pydantic model
29
+ cp releases/${{ inputs.version }}/reproschema_model.py reproschema-py/reproschema/models/model.py
29
30
cd reproschema-py
31
+ # updating url to context
32
+ echo "# this is automatically updated after reproschema new release" > reproschema/context_url.py
33
+ echo "CONTEXTFILE_URL = 'https://raw.githubusercontent.com/ReproNim/reproschema/main/releases/${{ inputs.version }}/reproschema'"
30
34
git checkout -b release_${{ inputs.version }}
31
- # TODO: change to pydantic model
32
- # TODO: a script to change CONTEXTFILE_URL can be added
33
- git add reproschema.jsonld
34
- git commit -m "Add new version of the model"
35
+ git add reproschema/models/model.py
36
+ git add reproschema/context_url.py
37
+ git commit -m "Add new version of the pydantic model and new context url"
35
38
cd ..
36
- - name : Push changes to target repository
39
+ - name : Push changes to reproschema-py
37
40
env :
38
41
TARGET_REPO : repronim/reproschema-py
39
42
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
40
43
run : |
41
44
cd reproschema-py
42
45
git push origin release_${{ inputs.version }}
43
- - name : Create pull request
46
+ - name : Create pull request to reproschema-py
44
47
env :
45
48
TARGET_REPO : repronim/reproschema-py
46
49
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
0 commit comments