Skip to content

Commit

Permalink
Update build asset names
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrit committed Jul 10, 2021
1 parent 853de0c commit 2511eda
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
flutter test
flutter build apk
flutter build appbundle
mv build/app/outputs/flutter-apk/app-release.apk build/UnitBargainHunter-android.apk
env:
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
Expand All @@ -34,5 +35,5 @@ jobs:
path: build/app/outputs/bundle/release/
- uses: actions/upload-artifact@v2
with:
name: app-release.apk
path: build/app/outputs/flutter-apk/
name: UnitBargainHunter-android.apk
path: build/UnitBargainHunter-android.apk
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
flutter build ios --release --no-codesign
- uses: actions/upload-artifact@v2
with:
name: unit_bargain_hunter-ios
name: UnitBargainHunter-iOS
path: /Users/runner/work/unit_bargain_hunter/unit_bargain_hunter/build/ios/iphoneos/Runner.app
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cp -r build/linux/x64/release/bundle unit_bargain_hunter
- uses: actions/upload-artifact@v2
with:
name: linux-portable
name: UnitBargainHunter-linux-portable
path: unit_bargain_hunter/
- name: Build AppImage
uses: docker://appimagecrafters/appimage-builder:0.9.0
Expand All @@ -32,7 +32,7 @@ jobs:
args: --recipe packaging/linux/appimage/AppImageBuilder.yml --skip-test
- uses: actions/upload-artifact@v2
with:
name: UnitBargainHunter-AppImage
name: UnitBargainHunter-linux-AppImage
path: |
*.AppImage
*.zsync
2 changes: 1 addition & 1 deletion .github/workflows/build-win32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
xcopy C:\Windows\System32\vcruntime140_1.dll build\unit_bargain_hunter
- uses: actions/upload-artifact@v2
with:
name: unit_bargain_hunter-win32_portable
name: UnitBargainHunter-windows-portable
path: build\unit_bargain_hunter
# - name: Package with Inno Setup
# run: |
Expand Down
2 changes: 1 addition & 1 deletion packaging/win32/inno-setup-script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DisableProgramGroupPage=yes
PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=commandline
OutputDir=build
OutputBaseFilename={#MyAppSimpleName}-installer
OutputBaseFilename=UnitBargainHunter-windows-installer
SetupIconFile=assets\icon\icon.ico
Compression=lzma
SolidCompression=yes
Expand Down

0 comments on commit 2511eda

Please sign in to comment.