Skip to content

Commit

Permalink
Merge pull request #8 from sacconazzo:develop
Browse files Browse the repository at this point in the history
release workflow
  • Loading branch information
sacconazzo authored Aug 3, 2024
2 parents 0857aca + 524eb6e commit 33506d2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
push:
tags:
- "v[0-9]*"

permissions:
contents: write

jobs:
release:
name: Release pushed tag
runs-on: ubuntu-22.04
steps:
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="$Release ${tag}" \
--generate-notes

0 comments on commit 33506d2

Please sign in to comment.