Skip to content

Commit

Permalink
Merge pull request #4 from monarch-initiative/github-action
Browse files Browse the repository at this point in the history
GitHub action
  • Loading branch information
joeflack4 authored Jul 7, 2023
2 parents c0e862c + fc0c5f0 commit a288faf
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/buid_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,20 @@ jobs:
- uses: actions/checkout@v2
- name: build
run: make all
- name: Get current time
uses: josStorer/[email protected]
id: current-time
with:
format: YYYY-MM-DD
- name: Release
run: make deploy-release
run: echo Uploading files as new release.
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.current-time.outputs.formattedTime }}"
title: "${{ steps.current-time.outputs.formattedTime }}"
prerelease: false
files: |
release/medgen.obo
release/medgen-disease-extract.obo
release/medgen-disease-extract.owl

0 comments on commit a288faf

Please sign in to comment.