Update packages and rebuild dist #27
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
on: [push] | |
jobs: | |
tag_release: | |
runs-on: ubuntu-latest | |
name: Tag release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Tag version | |
uses: wendbv/calver-tag-action@main | |
with: | |
output-only: true | |
id: tag-version | |
- name: Get the output version | |
run: echo "The new version is ${{ steps.tag-version.outputs.version }}" |