Skip to content

Commit

Permalink
ci: added automatic releases action
Browse files Browse the repository at this point in the history
  • Loading branch information
marcantondahmen committed May 20, 2021
1 parent c807cb4 commit 99e0db4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflow/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "tagged-release"

on:
push:
tags:
- "*"

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

0 comments on commit 99e0db4

Please sign in to comment.