updated release markdown #17
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: Tag Release | |
on: | |
push: | |
tags: | |
- "[0-9]+-[0-9]+-[0-9]+" | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add Big Grids | |
run: python3 add_big_grids.py | |
- name: Tar Test Grids | |
run: | | |
tar -czf ${{ github.workspace }}/cumulus-geoproc-test-data.tar.gz ./fixtures | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: "${{ github.workspace }}/cumulus-geoproc-test-data.tar.gz" | |
bodyFile: ${{ github.workspace }}/RELEASE.md | |
makeLatest: true |