Skip to content

Commit

Permalink
adding the OS names to the installers
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Jun 11, 2024
1 parent 2a0f5ca commit 8f609f4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,51 +125,51 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-x86_64.AppImage
asset_name: BowlerLauncher-x86_64.AppImage
asset_path: BowlerLauncher-Linux-x86_64.AppImage
asset_name: BowlerLauncher-Linux-x86_64.AppImage
asset_content_type: application/octet-stream
- name: upload Debian
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-x86_64.deb
asset_name: BowlerLauncher-x86_64.deb
asset_path: BowlerLauncher-Linux-x86_64.deb
asset_name: BowlerLauncher-Linux-x86_64.deb
asset_content_type: application/octet-stream
- name: upload Windows exe
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-x86_64.exe
asset_name: BowlerLauncher-x86_64.exe
asset_path: BowlerLauncher-Windows-x86_64.exe
asset_name: BowlerLauncher-Windows-x86_64.exe
asset_content_type: application/exe
- name: upload Windows zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-x86_64.zip
asset_name: BowlerLauncher-x86_64.zip
asset_path: BowlerLauncher-Windows-x86_64.zip
asset_name: BowlerLauncher-Windows-x86_64.zip
asset_content_type: application/zip
- name: upload MacOS dmg x86
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-x86_64.dmg
asset_name: BowlerLauncher-x86_64.dmg
asset_path: BowlerLauncher-MacOS-x86_64.dmg
asset_name: BowlerLauncher-MacOS-x86_64.dmg
asset_content_type: application/octet-stream
- name: upload MacOS dmg arm
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: BowlerLauncher-arm64.dmg
asset_name: BowlerLauncher-arm64.dmg
asset_path: BowlerLauncher-MacOS-arm64.dmg
asset_name: BowlerLauncher-MacOS-arm64.dmg
asset_content_type: application/octet-stream
4 changes: 2 additions & 2 deletions package-linux_x64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ echo "Deb built!"
ls -al
rm -rf release
mkdir release
cp *.deb release/$NAME-$ARCH.deb
cp $NAME-$ARCH.AppImage release/$NAME-$ARCH.AppImage
cp *.deb release/$NAME-Linux-$ARCH.deb
cp $NAME-$ARCH.AppImage release/$NAME-Linux-$ARCH.AppImage
#sudo apt remove bowlerlauncher
#sudo dpkg -i *.deb

Expand Down
2 changes: 1 addition & 1 deletion package-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ $JAVA_HOME/bin/jpackage --input $BUILDDIR \
ls -al
rm -rf release
mkdir release
mv $NAME-$VERSION.dmg release/$NAME-$ARCH.dmg
mv $NAME-$VERSION.dmg release/$NAME-MacOS-$ARCH.dmg
4 changes: 2 additions & 2 deletions package-windows_x86_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ ls -al
rm -rf release
mkdir release
export ARCH=x86_64
cp $NAME-$VERSION.exe release/$NAME-$ARCH.exe
cp $NAME-$VERSION.zip release/$NAME-$ARCH.zip
cp $NAME-$VERSION.exe release/$NAME-Windows-$ARCH.exe
cp $NAME-$VERSION.zip release/$NAME-Windows-$ARCH.zip

0 comments on commit 8f609f4

Please sign in to comment.