Skip to content

Commit

Permalink
Create create-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RedbackThomson authored Sep 27, 2021
1 parent 46cbaa8 commit 29d43a9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create Release

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

permissions:
contents: write # For creating releases

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create Release
uses: softprops/action-gh-release@v1
- name: Write Release Notes
uses: lakto/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
options: '--override --data-source=commits'

0 comments on commit 29d43a9

Please sign in to comment.