From 6e1bdd31256b4236066404ae8e5ebb8fcea3276f Mon Sep 17 00:00:00 2001 From: Paul Delafosse Date: Wed, 14 Feb 2024 17:02:35 +0100 Subject: [PATCH] ci: Fix release output --- .github/workflows/Release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Release.yaml b/.github/workflows/Release.yaml index 91a7203..6f4bcfb 100644 --- a/.github/workflows/Release.yaml +++ b/.github/workflows/Release.yaml @@ -39,13 +39,13 @@ jobs: run: cog bump --version 1.0.0 - name: Generate Changelog - run: cog changelog --at ${{ steps.release.outputs.version }} -t full_hash > GITHUB_CHANGELOG.md + run: cog changelog --at 1.0.0 -t full_hash > GITHUB_CHANGELOG.md - name: Upload github release uses: softprops/action-gh-release@v1 with: body_path: GITHUB_CHANGELOG.md - tag_name: ${{ steps.release.outputs.version }} + tag_name: 1.0.0 - name: Deploy to GitHub Pages uses: crazy-max/ghaction-github-pages@v4