-
Notifications
You must be signed in to change notification settings - Fork 18
33 lines (29 loc) · 934 Bytes
/
build.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
name: Build release files
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- 'src/ontology/imports/**_import.owl'
- 'src/ontology/components/**.owl'
jobs:
build:
runs-on: ubuntu-latest
container: obolibrary/odkfull:v1.5.2
strategy:
max-parallel: 1
steps:
- name: Checkout main branch
uses: actions/checkout@v4
- name: work around permission issue
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Update release files
run: cd src/ontology/ && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' GITHUB_ACTION=true prepare_release_fast
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update release files
title: 'Update release files'
body: |
Updates all release files.
assignees: matentzn