Skip to content

Commit

Permalink
feat(ci): release on github on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed May 28, 2024
1 parent 00021b5 commit 07e93f3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,16 @@ jobs:
with:
image_name: ${{ env.GHCR_REGISTRY_IMAGE }}
registry: ghcr
create-release:
name: Create release
runs-on: ubuntu-latest
needs:
- docker_merge
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
title: Version $version

0 comments on commit 07e93f3

Please sign in to comment.