fix(ci): Improve artifact naming legibility

This commit is contained in:
Jagandeep Brar
2022-01-17 14:05:37 -05:00
parent f15237f97c
commit ea5e6d16ac
7 changed files with 13 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
name: 'Build & Deploy All Platforms'
name: 'All Platforms'
on:
push:

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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