Skip to content

Commit

Permalink
release #103
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Nov 30, 2024
1 parent c4a9651 commit ef4664b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ jobs:

- name: Generate Tag Name
id: tag_name
run: |
echo "RELEASE_TAG=release-$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
run: echo "RELEASE_TAG=release-$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV

- name: Create GitHub Release
id: create_release
Expand All @@ -160,7 +159,7 @@ jobs:

- name: Upload Artifacts to Release
run: |
for file in artifacts/*; do
for file in $(find artifacts -type f); do
gh release upload ${{ env.RELEASE_TAG }} "$file"
done
env:
Expand Down

0 comments on commit ef4664b

Please sign in to comment.