diff --git a/.github/workflows/build_all_platforms.yml b/.github/workflows/build_all_platforms.yml index db6c8ae0..b9d959b8 100644 --- a/.github/workflows/build_all_platforms.yml +++ b/.github/workflows/build_all_platforms.yml @@ -1,4 +1,4 @@ -name: 'Build & Deploy All Platforms' +name: 'All Platforms' on: push: diff --git a/.github/workflows/build_android.yml b/.github/workflows/build_android.yml index f0375ce5..01c12925 100644 --- a/.github/workflows/build_android.yml +++ b/.github/workflows/build_android.yml @@ -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 diff --git a/.github/workflows/build_ios.yml b/.github/workflows/build_ios.yml index 9096b72b..2255df48 100644 --- a/.github/workflows/build_ios.yml +++ b/.github/workflows/build_ios.yml @@ -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 diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index b2f28ad5..ff4bf15e 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -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 diff --git a/.github/workflows/deploy_android.yml b/.github/workflows/deploy_android.yml index 9ae5e10f..5a9287e2 100644 --- a/.github/workflows/deploy_android.yml +++ b/.github/workflows/deploy_android.yml @@ -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 diff --git a/.github/workflows/deploy_ios.yml b/.github/workflows/deploy_ios.yml index 279b35bb..6662358b 100644 --- a/.github/workflows/deploy_ios.yml +++ b/.github/workflows/deploy_ios.yml @@ -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 diff --git a/.github/workflows/deploy_macos.yml b/.github/workflows/deploy_macos.yml index 19584e9d..cbef32be 100644 --- a/.github/workflows/deploy_macos.yml +++ b/.github/workflows/deploy_macos.yml @@ -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