Skip to content

Commit

Permalink
Merge pull request #7 from ankorstore/feat/release-workflow
Browse files Browse the repository at this point in the history
feat: add release gha workflow
  • Loading branch information
ankorstore-haddowg authored Mar 10, 2023
2 parents 6cfae2b + 062582e commit f8c0ca7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# .github/workflows/release.yml
name: Release

on:
pull_request:
types: [closed]

jobs:
build:
runs-on: ubuntu-latest

if: github.event.pull_request.merged

steps:
- name: Generate Semver release
uses: nitinses/[email protected]
with:
release_branch: master
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f8c0ca7

Please sign in to comment.