Skip to content

Commit

Permalink
fix: failed to create new release and github releases requires a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmutableJeffrey committed Feb 7, 2025
1 parent 04b3faa commit 12842b2
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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 }}

0 comments on commit 12842b2

Please sign in to comment.