mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
fix(ci): Improve artifact naming legibility
This commit is contained in:
2
.github/workflows/build_all_platforms.yml
vendored
2
.github/workflows/build_all_platforms.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: 'Build & Deploy All Platforms'
|
||||
name: 'All Platforms'
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
4
.github/workflows/build_android.yml
vendored
4
.github/workflows/build_android.yml
vendored
@@ -16,7 +16,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: 'Build Signed Android App Bundle'
|
||||
name: 'Build App Bundle'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -69,5 +69,5 @@ jobs:
|
||||
- name: Upload App Bundle Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-android
|
||||
name: android-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}/build/app/outputs/bundle/release/app-release.aab
|
||||
|
||||
4
.github/workflows/build_ios.yml
vendored
4
.github/workflows/build_ios.yml
vendored
@@ -26,7 +26,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: 'Build Signed iOS App Package'
|
||||
name: 'Build App Package'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -91,5 +91,5 @@ jobs:
|
||||
- name: Upload App Package Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-ios
|
||||
name: ios-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}/ios/Runner.ipa
|
||||
|
||||
4
.github/workflows/build_macos.yml
vendored
4
.github/workflows/build_macos.yml
vendored
@@ -26,7 +26,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: 'Build Signed macOS App Package'
|
||||
name: 'Build App Package'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -92,5 +92,5 @@ jobs:
|
||||
- name: Upload App Package Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-macos
|
||||
name: macos-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}/macos/LunaSea.pkg
|
||||
|
||||
4
.github/workflows/deploy_android.yml
vendored
4
.github/workflows/deploy_android.yml
vendored
@@ -12,7 +12,7 @@ on:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: 'Deploy to Google Play Store'
|
||||
name: 'Deploy to Play Store'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -25,7 +25,7 @@ jobs:
|
||||
- name: Download App Bundle Artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-android
|
||||
name: android-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}
|
||||
|
||||
- name: Install Secret Keys
|
||||
|
||||
4
.github/workflows/deploy_ios.yml
vendored
4
.github/workflows/deploy_ios.yml
vendored
@@ -24,7 +24,7 @@ on:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: 'Deploy to App Store Connect'
|
||||
name: 'Deploy to App Store'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -37,7 +37,7 @@ jobs:
|
||||
- name: Download App Package Artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-ios
|
||||
name: ios-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}
|
||||
|
||||
- name: Install Secret Keys
|
||||
|
||||
4
.github/workflows/deploy_macos.yml
vendored
4
.github/workflows/deploy_macos.yml
vendored
@@ -24,7 +24,7 @@ on:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: 'Deploy to App Store Connect'
|
||||
name: 'Deploy to App Store'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
@@ -37,7 +37,7 @@ jobs:
|
||||
- name: Download App Package Artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: ${{ github.sha }}-${{ (github.event.inputs || inputs).flavor }}-macos
|
||||
name: macos-${{ (github.event.inputs || inputs).flavor }}-${{ github.sha }}
|
||||
path: ${{ github.workspace }}
|
||||
|
||||
- name: Install Secret Keys
|
||||
|
||||
Reference in New Issue
Block a user