Skip to content

Commit

Permalink
create github workflow for automated tagged release
Browse files Browse the repository at this point in the history
  • Loading branch information
InfamousSYN committed Jun 30, 2022
1 parent 2849378 commit c274e7b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "tagged-release"

on:
pull_request:
branches: [ "master" ]

jobs:
tagged-release:
runs-on: ubuntu-latest

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.API_TOKEN }}"
prerelease: false
id: "automatic_releases"

0 comments on commit c274e7b

Please sign in to comment.