Run and deploy release #96
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run and deploy release | |
on: | |
workflow_dispatch: | |
# schedule: | |
# - cron: "0 0 1 * *" | |
jobs: | |
deploy: | |
runs-on: macos-latest | |
steps: | |
- uses: docker-practice/actions-setup-docker@master | |
- run: | | |
set -x | |
docker version | |
- name: Install ODK | |
run: docker pull obolibrary/odkfull | |
- name: Checkout main branch | |
uses: actions/checkout@v3 | |
- name: work around permission issue | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Update release files | |
run: cd src/ontology/ && docker run -v $PWD/../../:/work -w /work/src/ontology -e ROBOT_JAVA_ARGS='-Xmx10G' -e JAVA_OPTS='-Xmx10G' --rm obolibrary/odkfull make GITHUB_ACTION=true prepare_release_fast | |
- name: Run release | |
uses: gaoDean/action-gh-release@6b61bb5648ddc1241deb73ea6b72c3a1e1f9e445 | |
with: | |
generate_release_notes: true | |
draft: true | |
tag_name: v${{ steps.date.outputs.date }} | |
files: | | |
mp.owl | |
mp.obo | |
mp.json | |
mp-base.owl | |
mp-base.obo | |
mp-base.json | |
mp-full.owl | |
mp-full.obo | |
mp-full.json | |
mp-international.owl | |
src/ontology/translations/mp-ja.babelon.tsv | |
src/ontology/translations/mp-ja.owl | |
src/ontology/translations/mp-profile-ja.owl | |
src/ontology/reports/updated-labels-to-candidate-status-ja.tsv | |
mp-simple-non-classified.owl | |
mp-simple-non-classified.obo | |
mp-simple-non-classified.json |