Skip to content

Commit

Permalink
chore(ci): add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
nallenscott committed Jun 10, 2023
1 parent 3729dfa commit e706a0e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

on:
push:
branches:
- master

defaults:
run:
shell: bash

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/[email protected]

- name: Bump version and push tag
uses: mathieudutour/[email protected]
id: bump_version
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub release
uses: ncipollo/[email protected]
with:
tag: ${{ steps.bump_version.outputs.new_tag }}
name: Release ${{ steps.bump_version.outputs.new_tag }}
body: ${{ steps.bump_version.outputs.changelog }}

0 comments on commit e706a0e

Please sign in to comment.