Skip to content

Commit

Permalink
CHANGE fix on repo name in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank1234 committed Jul 31, 2024
1 parent b6bc549 commit 9f727f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Upload Dev Debug APK to Artifacts
uses: actions/upload-artifact@v3
with:
name: ${GITHUB_REPOSITORY#*/}-${{ github.run_number }}-dev-debug-apk
name: ${{ github.event.repository.name }}-${{ github.run_number }}-dev-debug-apk
path: |
${{ github.workspace }}/app/build/outputs/apk/devDebug/app-dev-debug.apk
Expand All @@ -29,6 +29,6 @@ jobs:
- name: Upload Prod Debug APK to Artifacts
uses: actions/upload-artifact@v3
with:
name: ${GITHUB_REPOSITORY#*/}_${{ github.run_number }}-prod-debug-apk
name: ${{ github.event.repository.name }}_${{ github.run_number }}-prod-debug-apk
path: |
${{ github.workspace }}/app/build/outputs/apk/prodDebug/app-prod-debug.apk
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Upload Release APK to Artifacts
uses: actions/upload-artifact@v3
with:
name: ${GITHUB_REPOSITORY#*/}-${{ github.run_number }}-prod-release-apk
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-apk
path: |
${{ github.workspace }}/app/build/outputs/apk/prodRelease/app-prod-release.apk
Expand All @@ -56,6 +56,6 @@ jobs:
- name: Upload Release Bundle to Artifacts
uses: actions/upload-artifact@v3
with:
name: ${GITHUB_REPOSITORY#*/}-${{ github.run_number }}-prod-release-bundle
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-bundle
path: |
${{ github.workspace }}/app/build/outputs/bundle/prodRelease/app-prod-release.aab

0 comments on commit 9f727f6

Please sign in to comment.