Skip to content

Commit

Permalink
Automatically create release when tag is pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluesy1 committed Jun 19, 2024
1 parent 638ebb2 commit 5d27a03
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create new Release

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

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write

if: ${{ github.actor_id == '2507459' || github.actor_id == '68259537' }}

steps:
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --generate-notes

0 comments on commit 5d27a03

Please sign in to comment.