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

Release .zip instead of .tar.gz for windows in sdkman #20630

Merged
merged 3 commits into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/publish-sdkman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,15 @@ jobs:
matrix:
include:
- platform: LINUX_64
archive : 'scala3-${{ inputs.version }}-x86_64-pc-linux.tar.gz'
archive : 'scala3-${{ inputs.version }}-x86_64-pc-linux.zip'
- platform: LINUX_ARM64
archive : 'scala3-${{ inputs.version }}-aarch64-pc-linux.tar.gz'
archive : 'scala3-${{ inputs.version }}-aarch64-pc-linux.zip'
- platform: MAC_OSX
archive : 'scala3-${{ inputs.version }}-x86_64-apple-darwin.tar.gz'
archive : 'scala3-${{ inputs.version }}-x86_64-apple-darwin.zip'
- platform: MAC_ARM64
archive : 'scala3-${{ inputs.version }}-aarch64-apple-darwin.tar.gz'
archive : 'scala3-${{ inputs.version }}-aarch64-apple-darwin.zip'
- platform: WINDOWS_64
archive : 'scala3-${{ inputs.version }}-x86_64-pc-win32.tar.gz'
- platform: UNIVERSAL
archive : 'scala3-${{ inputs.version }}.zip'
archive : 'scala3-${{ inputs.version }}-x86_64-pc-win32.zip'
steps:
- uses: hamzaremmal/sdkman-release-action@7e437233a6bd79bc4cb0fa9071b685e94bdfdba6
with:
Expand Down
Loading