-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.05 KB
/
createRoCrate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CI
# Controls when the workflow will run
on:
push:
paths:
- 'metadata/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository content
uses: actions/checkout@v4 # checkout the repository content
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10' # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install rocrate
- name: execute py script # run create_roCrate.py
run: python create_roCrate.py
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git add roCrates/
git diff-index --quiet HEAD || git commit -m "Add new RoCrates generated by workflow"
git push