Skip to content

Version bump

Version bump #23

Workflow file for this run

# This workflow is triggered whenever a new git tag matching
# the pattern "v.*.*.*" is pushed to GitHub. It will automatically
# create a new GitHub release.
name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+**'
jobs:
release:
name: "Release"
runs-on: ubuntu-latest
steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false