Don't error if compression of coredumps fails (#20) #12
Workflow file for this run
This file contains hidden or 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: TagAlias | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| TagAlias: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get the major version | |
| id: get_version | |
| run: echo ::set-output name=major::$(echo $GITHUB_REF | grep -o 'v[[:digit:]]*') | |
| - name: Tag the alias | |
| uses: richardsimko/update-tag@v1 | |
| with: | |
| tag_name: ${{ steps.get_version.outputs.major }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |