mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
build: fix GitHub release asset file names
This commit is contained in:
parent
2423abeb9d
commit
d8bb06a7ce
2 changed files with 2 additions and 2 deletions
2
.github/workflows/build_macos.yml
vendored
2
.github/workflows/build_macos.yml
vendored
|
@ -261,7 +261,7 @@ jobs:
|
||||||
/usr/bin/codesign --force --options runtime -s "${IDENTITY}" --keychain $KEYCHAIN_PATH -v TR1X-Installer.dmg
|
/usr/bin/codesign --force --options runtime -s "${IDENTITY}" --keychain $KEYCHAIN_PATH -v TR1X-Installer.dmg
|
||||||
xcrun notarytool submit --wait --apple-id "$MACOS_APPLEID" --password "$MACOS_APP_PWD" --team-id "$MACOS_TEAMID" TR1X-Installer.dmg
|
xcrun notarytool submit --wait --apple-id "$MACOS_APPLEID" --password "$MACOS_APP_PWD" --team-id "$MACOS_TEAMID" TR1X-Installer.dmg
|
||||||
xcrun stapler staple -v TR1X-Installer.dmg
|
xcrun stapler staple -v TR1X-Installer.dmg
|
||||||
mv TR1X-Installer.dmg "$(tools/get_version)-Installer.dmg"
|
mv TR1X-Installer.dmg "TR1X-$(tools/get_version)-Installer.dmg"
|
||||||
|
|
||||||
- name: Upload signed+notarized installer image
|
- name: Upload signed+notarized installer image
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
2
justfile
2
justfile
|
@ -60,7 +60,7 @@ package-win-all: (build-win "release") (build-win-config) (_docker
|
||||||
package-win-installer: (build-win "release") (build-win-config) (_docker_run "rrdash/tr1x" "package" "-o" "tools/installer/Installer/Resources/release.zip") (build-win-installer)
|
package-win-installer: (build-win "release") (build-win-config) (_docker_run "rrdash/tr1x" "package" "-o" "tools/installer/Installer/Resources/release.zip") (build-win-installer)
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
git checkout "tools/installer/Installer/Resources/release.zip"
|
git checkout "tools/installer/Installer/Resources/release.zip"
|
||||||
exe_name=$(tools/get_version)-Installer.exe
|
exe_name=TR1X-$(tools/get_version)-Installer.exe
|
||||||
cp tools/installer/out/TR1X_Installer.exe "${exe_name}"
|
cp tools/installer/out/TR1X_Installer.exe "${exe_name}"
|
||||||
echo "Created ${exe_name}"
|
echo "Created ${exe_name}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue