Skip to content

Commit

Permalink
Experimenting with ODK in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
joeflack4 committed Jun 19, 2023
1 parent 969d091 commit 98ba08c
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions .github/workflows/buid_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
jobs:
build_and_release:
runs-on: ubuntu-latest
# container: obolibrary/odkfull:v1.4.1
# container: obolibrary/odkfull:dev
container: obolibrary/odkfull:latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
Expand All @@ -21,7 +24,7 @@ jobs:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
# python -m pip install --upgrade pip
make install
- name: Create .env file
run: |
Expand All @@ -34,20 +37,23 @@ jobs:
# utcOffset: "+08:00"
format: YYYY-MM-DD
- name: build
run: make automated-release-artefacts -B
- name: Release
run: echo Uploading files as new release.
# This one wouldn't work unless it was a tag and on-push.
# uses: softprops/action-gh-release@v1
# run: make automated-release-artefacts -B
run: robot --help


# - name: Release
- uses: "marvinpinto/action-automatic-releases@latest"
with:
# Apparently, GITHUB_TOKEN is auto-created: https://dev.to/github/the-githubtoken-in-github-actions-how-it-works-change-permissions-customizations-3cgp
# ...even though I don't see it here: https://github.com/monarch-initiative/omim/settings/secrets/actions
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.current-time.outputs.formattedTime }}"
# title: "My Title"
prerelease: false
files: |
omim.ttl
# omim.sssom.tsv
# run: echo Uploading files as new release.
## This one wouldn't work unless it was a tag and on-push.
## uses: softprops/action-gh-release@v1
## - name: Release
# - uses: "marvinpinto/action-automatic-releases@latest"
# with:
## Apparently, GITHUB_TOKEN is auto-created: https://dev.to/github/the-githubtoken-in-github-actions-how-it-works-change-permissions-customizations-3cgp
## ...even though I don't see it here: https://github.com/monarch-initiative/omim/settings/secrets/actions
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
# automatic_release_tag: "${{ steps.current-time.outputs.formattedTime }}"
## title: "My Title"
# prerelease: false
# files: |
# omim.ttl
## omim.sssom.tsv

0 comments on commit 98ba08c

Please sign in to comment.