diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5f911c..f75d8ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -125,8 +125,8 @@ 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 @@ -134,8 +134,8 @@ jobs: 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 @@ -143,8 +143,8 @@ jobs: 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 @@ -152,8 +152,8 @@ jobs: 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 @@ -161,8 +161,8 @@ jobs: 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 @@ -170,6 +170,6 @@ jobs: 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 \ No newline at end of file diff --git a/package-linux_x64.sh b/package-linux_x64.sh index 9d587f2..b1e6d7c 100644 --- a/package-linux_x64.sh +++ b/package-linux_x64.sh @@ -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 diff --git a/package-macos.sh b/package-macos.sh index e6cc084..43be75b 100644 --- a/package-macos.sh +++ b/package-macos.sh @@ -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 \ No newline at end of file +mv $NAME-$VERSION.dmg release/$NAME-MacOS-$ARCH.dmg \ No newline at end of file diff --git a/package-windows_x86_64.sh b/package-windows_x86_64.sh index 3c4fae4..4c77c8c 100644 --- a/package-windows_x86_64.sh +++ b/package-windows_x86_64.sh @@ -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 \ No newline at end of file +cp $NAME-$VERSION.exe release/$NAME-Windows-$ARCH.exe +cp $NAME-$VERSION.zip release/$NAME-Windows-$ARCH.zip \ No newline at end of file