From f417cd5937900d601b9266364fc1cb05f50cd272 Mon Sep 17 00:00:00 2001 From: Stefan Wiedemann Date: Thu, 30 May 2024 13:15:37 +0200 Subject: [PATCH] fix tagging (#21) --- .github/workflows/release.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0900992..429c2f5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -127,4 +127,13 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_SKIP_EXISTING: true with: - pages_branch: gh-pages \ No newline at end of file + pages_branch: gh-pages + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: ${{ needs.generate-version.outputs.version }} + prerelease: false + title: ${{ needs.generate-version.outputs.version }} + files: | + LICENSE \ No newline at end of file