- Implemented logic to use get_dmrpp or get_dmrpp_h4 depending on th… #148
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: Create releases | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
test_pull_request: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get tag version | |
id: tag_name | |
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/} | |
- name: Build a release | |
run: | | |
echo ${{ github.event_name }} | |
bash create_release.sh $SOURCE_TAG | |
env: | |
SOURCE_TAG: ${{ steps.tag_name.outputs.SOURCE_TAG }} | |
GITHUB_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
GITHUB_REPO: ghrcdaac/dmrpp-generator | |
GUTHUB_DOCKER_IMAGE: ghrcdaac/dmrpp-file-generator-docker |