Skip to content

Commit

Permalink
Add release action.
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyhuo committed Aug 25, 2023
1 parent 672402d commit 7b7de72
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: "Tagged Release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged 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 7b7de72

Please sign in to comment.