Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Release #64

Merged
merged 13 commits into from
Mar 26, 2024
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ jobs:
incremented_version=$(echo $version | awk -F. -v OFS=. '{$NF++; print}')

# Create a tarball of the built product
tar -czf v$(echo {incremented_version}).tar.gz -C
tar -czf v${incremented_version}.tar.gz -C
.build/apple/Products/Release ${{secrets.PRODUCT_NAME}}.swiftmodule

# Create a new tag with the incremented version number
gh release create v$incremented_version --title "Release v$incremented_version" --notes "Release v$incremented_version" --prerelease '${{ github.ref_name }}.tar.gz'
gh release create v$incremented_version --title "Release v$incremented_version" --notes "Release v$incremented_version" --prerelease 'v${incremented_version}.tar.gz'

Loading