Skip to content

Commit from GitHub Actions (Fixtures) #20

Commit from GitHub Actions (Fixtures)

Commit from GitHub Actions (Fixtures) #20

Workflow file for this run

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