Skip to content

Commit

Permalink
aoisjd
Browse files Browse the repository at this point in the history
  • Loading branch information
bkacjios committed Jan 3, 2025
1 parent 93732da commit 7d11082
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ jobs:
- name: Create Release
id: create_release
run: |
RELEASE_TAG="${{ steps.release_tag.outputs.release_tag }}" # Fetch release tag from earlier step
echo "Creating release with tag $RELEASE_TAG"
gh release create $RELEASE_TAG # Create the release with the single release tag
gh release create $RELEASE_TAG --title "Release $RELEASE_TAG" --notes "Release created on $RELEASE_TAG" # Create the release with the tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build_and_upload:
needs: create_release
needs: create_release # Ensure this job runs after `create_release`
runs-on: ${{ matrix.os }}

strategy:
Expand Down

0 comments on commit 7d11082

Please sign in to comment.