Skip to content

Commit

Permalink
feat: add release gha workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ankorstore-haddowg committed Mar 10, 2023
1 parent 6cfae2b commit 062582e
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 062582e

Please sign in to comment.