mirror of
https://github.com/bitwarden/android.git
synced 2026-05-25 15:37:03 -05:00
Rename app package to authenticator (#305)
Co-authored-by: Álison Fernandes <vvolkgang@users.noreply.github.com>
This commit is contained in:
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@@ -191,7 +191,7 @@ jobs:
|
||||
versionName:${{ inputs.version-name || '' }}
|
||||
|
||||
regex='versionName = "([^"]+)"'
|
||||
if [[ "$(cat app/build.gradle.kts)" =~ $regex ]]; then
|
||||
if [[ "$(cat authenticator/build.gradle.kts)" =~ $regex ]]; then
|
||||
VERSION_NAME="${BASH_REMATCH[1]}"
|
||||
fi
|
||||
echo "Version Name: ${VERSION_NAME}" >> $GITHUB_STEP_SUMMARY
|
||||
@@ -220,7 +220,7 @@ jobs:
|
||||
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
||||
with:
|
||||
name: com.bitwarden.authenticator.aab
|
||||
path: app/build/outputs/bundle/release/com.bitwarden.authenticator-release.aab
|
||||
path: authenticator/build/outputs/bundle/release/com.bitwarden.authenticator-release.aab
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload release .apk artifact
|
||||
@@ -228,19 +228,19 @@ jobs:
|
||||
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
||||
with:
|
||||
name: com.bitwarden.authenticator.apk
|
||||
path: app/build/outputs/apk/release/com.bitwarden.authenticator-release.apk
|
||||
path: authenticator/build/outputs/apk/release/com.bitwarden.authenticator-release.apk
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Create checksum file for Release AAB
|
||||
if: ${{ matrix.variant == 'aab' }}
|
||||
run: |
|
||||
sha256sum "app/build/outputs/bundle/release/com.bitwarden.authenticator-release.aab" \
|
||||
sha256sum "authenticator/build/outputs/bundle/release/com.bitwarden.authenticator-release.aab" \
|
||||
> ./authenticator-android-aab-sha256.txt
|
||||
|
||||
- name: Create checksum for release .apk artifact
|
||||
if: ${{ matrix.variant == 'apk' }}
|
||||
run: |
|
||||
sha256sum "app/build/outputs/apk/release/com.bitwarden.authenticator-release.apk" \
|
||||
sha256sum "authenticator/build/outputs/apk/release/com.bitwarden.authenticator-release.apk" \
|
||||
> ./authenticator-android-apk-sha256.txt
|
||||
|
||||
- name: Upload .apk SHA file for release
|
||||
|
||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -79,4 +79,4 @@ jobs:
|
||||
- name: Upload to codecov.io
|
||||
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
|
||||
with:
|
||||
files: app/build/reports/kover/reportDebug.xml
|
||||
files: authenticator/build/reports/kover/reportDebug.xml
|
||||
|
||||
Reference in New Issue
Block a user