Skip to content

Commit

Permalink
ci: add workflow: release
Browse files Browse the repository at this point in the history
  • Loading branch information
adoyle-h committed Sep 6, 2024
1 parent 9bff893 commit e904110
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: release

on:
push:
tags:
- "v*.*.*"
- "v*.*.*-*"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Release
uses: softprops/action-gh-release@v1
with:
body: Please read the [CHANGELOG](https://github.com/${{github.repository}}/blob/master/CHANGELOG.md#${{github.ref_name}}).

0 comments on commit e904110

Please sign in to comment.