From 12842b2d91deeafd0c77b6631e2ea8d28cbab505 Mon Sep 17 00:00:00 2001 From: ImmutableJeffrey Date: Fri, 7 Feb 2025 13:56:31 +1000 Subject: [PATCH] fix: failed to create new release and github releases requires a tag --- .github/workflows/release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf116b4c..bcbc4f31 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - + - name: Extract TS SDK version from index.js id: extract_ts_sdk_version run: | @@ -28,7 +28,7 @@ jobs: version=$(echo "$version" | tr -d '\r\n') echo "VERSION=${version}" >> "$GITHUB_ENV" - + - name: Build Changelog id: github_release uses: mikepenz/release-changelog-builder-action@v3 @@ -52,9 +52,8 @@ jobs: - name: Create Release uses: mikepenz/action-gh-release@v0.2.0-a03 with: + tag_name: ${{ env.VERSION }} body: | ${{steps.github_release.outputs.changelog}} - Game bridge built from Immutable Typescript SDK version ${{ env.VERSION }} - - + Game bridge built from Immutable Typescript SDK version ${{ env.VERSION }} \ No newline at end of file