Skip to content

Commit

Permalink
Automate GitHub release creation (#483)
Browse files Browse the repository at this point in the history
* automate github release creation

Adds a workflow file to create a GitHub release, when a version tag is pushed.

* set fix latest version of auto release action
  • Loading branch information
devmount committed Jul 18, 2021
1 parent efed99b commit d84fd95
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This workflow will create a GitHub release every time a tag is pushed
name: Create GitHub Release

on:
push:
tags:
- "v2.*"
- "v3.*"

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit d84fd95

Please sign in to comment.