Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnowack committed Feb 23, 2024
1 parent 43436fa commit d393fa1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags:
- '!refs/tags/*'
- '!*'
- v*

permissions:
contents: write

jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Create Release
steps:
- uses: maxnowack/[email protected]
with:
token: "${{ secrets.GITHUB_TOKEN }}"
useNameFromRef: 'true'
ref: "${{ github.ref }}"
badwords: 'ci:,docs:,chore:,chore(deps),fix(deps)'

0 comments on commit d393fa1

Please sign in to comment.