Skip to content

Commit 8f609f4

Browse files
committed
adding the OS names to the installers
1 parent 2a0f5ca commit 8f609f4

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -125,51 +125,51 @@ jobs:
125125
GITHUB_TOKEN: ${{ github.token }}
126126
with:
127127
upload_url: ${{ steps.create_release.outputs.upload_url }}
128-
asset_path: BowlerLauncher-x86_64.AppImage
129-
asset_name: BowlerLauncher-x86_64.AppImage
128+
asset_path: BowlerLauncher-Linux-x86_64.AppImage
129+
asset_name: BowlerLauncher-Linux-x86_64.AppImage
130130
asset_content_type: application/octet-stream
131131
- name: upload Debian
132132
uses: actions/upload-release-asset@v1
133133
env:
134134
GITHUB_TOKEN: ${{ github.token }}
135135
with:
136136
upload_url: ${{ steps.create_release.outputs.upload_url }}
137-
asset_path: BowlerLauncher-x86_64.deb
138-
asset_name: BowlerLauncher-x86_64.deb
137+
asset_path: BowlerLauncher-Linux-x86_64.deb
138+
asset_name: BowlerLauncher-Linux-x86_64.deb
139139
asset_content_type: application/octet-stream
140140
- name: upload Windows exe
141141
uses: actions/upload-release-asset@v1
142142
env:
143143
GITHUB_TOKEN: ${{ github.token }}
144144
with:
145145
upload_url: ${{ steps.create_release.outputs.upload_url }}
146-
asset_path: BowlerLauncher-x86_64.exe
147-
asset_name: BowlerLauncher-x86_64.exe
146+
asset_path: BowlerLauncher-Windows-x86_64.exe
147+
asset_name: BowlerLauncher-Windows-x86_64.exe
148148
asset_content_type: application/exe
149149
- name: upload Windows zip
150150
uses: actions/upload-release-asset@v1
151151
env:
152152
GITHUB_TOKEN: ${{ github.token }}
153153
with:
154154
upload_url: ${{ steps.create_release.outputs.upload_url }}
155-
asset_path: BowlerLauncher-x86_64.zip
156-
asset_name: BowlerLauncher-x86_64.zip
155+
asset_path: BowlerLauncher-Windows-x86_64.zip
156+
asset_name: BowlerLauncher-Windows-x86_64.zip
157157
asset_content_type: application/zip
158158
- name: upload MacOS dmg x86
159159
uses: actions/upload-release-asset@v1
160160
env:
161161
GITHUB_TOKEN: ${{ github.token }}
162162
with:
163163
upload_url: ${{ steps.create_release.outputs.upload_url }}
164-
asset_path: BowlerLauncher-x86_64.dmg
165-
asset_name: BowlerLauncher-x86_64.dmg
164+
asset_path: BowlerLauncher-MacOS-x86_64.dmg
165+
asset_name: BowlerLauncher-MacOS-x86_64.dmg
166166
asset_content_type: application/octet-stream
167167
- name: upload MacOS dmg arm
168168
uses: actions/upload-release-asset@v1
169169
env:
170170
GITHUB_TOKEN: ${{ github.token }}
171171
with:
172172
upload_url: ${{ steps.create_release.outputs.upload_url }}
173-
asset_path: BowlerLauncher-arm64.dmg
174-
asset_name: BowlerLauncher-arm64.dmg
173+
asset_path: BowlerLauncher-MacOS-arm64.dmg
174+
asset_name: BowlerLauncher-MacOS-arm64.dmg
175175
asset_content_type: application/octet-stream

package-linux_x64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ echo "Deb built!"
110110
ls -al
111111
rm -rf release
112112
mkdir release
113-
cp *.deb release/$NAME-$ARCH.deb
114-
cp $NAME-$ARCH.AppImage release/$NAME-$ARCH.AppImage
113+
cp *.deb release/$NAME-Linux-$ARCH.deb
114+
cp $NAME-$ARCH.AppImage release/$NAME-Linux-$ARCH.AppImage
115115
#sudo apt remove bowlerlauncher
116116
#sudo dpkg -i *.deb
117117

package-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ $JAVA_HOME/bin/jpackage --input $BUILDDIR \
7777
ls -al
7878
rm -rf release
7979
mkdir release
80-
mv $NAME-$VERSION.dmg release/$NAME-$ARCH.dmg
80+
mv $NAME-$VERSION.dmg release/$NAME-MacOS-$ARCH.dmg

package-windows_x86_64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ ls -al
8282
rm -rf release
8383
mkdir release
8484
export ARCH=x86_64
85-
cp $NAME-$VERSION.exe release/$NAME-$ARCH.exe
86-
cp $NAME-$VERSION.zip release/$NAME-$ARCH.zip
85+
cp $NAME-$VERSION.exe release/$NAME-Windows-$ARCH.exe
86+
cp $NAME-$VERSION.zip release/$NAME-Windows-$ARCH.zip

0 commit comments

Comments
 (0)