Skip to content

Commit

Permalink
Release .zip instead of .tar.gz for windows in sdkman (#20630)
Browse files Browse the repository at this point in the history
SDKMAN! prefers to upload zip files and not include the UNIVERSAL platform when other platforms are also released
  • Loading branch information
hamzaremmal committed Jun 21, 2024
2 parents 3ef7814 + bb91288 commit 5db826a
Showing 1 changed file with 5 additions and 7 deletions.
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

0 comments on commit 5db826a

Please sign in to comment.