Skip to content

Commit e679752

Browse files
authored
Merge pull request #526 from djarecka/pushga_update
adding context to reproschema-py PR GA workflow
2 parents 1d1eef8 + 4b67db8 commit e679752

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/push_reproschema_py.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,25 @@ jobs:
2525
- name: Make changes to target repository
2626
id: changes
2727
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
2930
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'"
3034
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"
3538
cd ..
36-
- name: Push changes to target repository
39+
- name: Push changes to reproschema-py
3740
env:
3841
TARGET_REPO: repronim/reproschema-py
3942
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
4043
run: |
4144
cd reproschema-py
4245
git push origin release_${{ inputs.version }}
43-
- name: Create pull request
46+
- name: Create pull request to reproschema-py
4447
env:
4548
TARGET_REPO: repronim/reproschema-py
4649
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)