Skip to content

Commit

Permalink
chore: create action to automatically tag releases
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Mar 20, 2021
1 parent 1f38844 commit cf64766
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tag Release

on:
push:
tags:
- "*"

jobs:
tag-release:
name: "Tagged Release"
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit cf64766

Please sign in to comment.