Merge remote-tracking branch 'upstream/master' #259
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BuildReleaseApk | |
on: [push, pull_request] | |
jobs: | |
buildReleaseApk: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Specify node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Use npm caches | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Use specific Java version for sdkmanager to work | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Install node_modules | |
run: npm install --production | |
- name: Extract Version Name | |
id: version_name | |
run: | | |
VERSION_NAME=$(grep versionName android/app/build.gradle | awk '{print $2}' | tr -d '"') | |
echo "VERSION_NAME=$VERSION_NAME" >> $GITHUB_ENV | |
echo "::set-output name=version_name::$VERSION_NAME" | |
- name: Generate Build Number based on timestamp | |
run: | | |
NEW_BUILD_NUMBER=$(date +%s) | |
echo "NEW_BUILD_NUMBER=$NEW_BUILD_NUMBER" >> $GITHUB_ENV | |
echo "::set-output name=build_number::$NEW_BUILD_NUMBER" | |
- name: Build | |
env: | |
KEYSTORE_FILE_BASE64: ${{ secrets.KEYSTORE_FILE_BASE64 }} | |
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
BUILD_NUMBER: ${{ env.NEW_BUILD_NUMBER }} | |
run: ./scripts/build-release-apk.sh | |
- uses: actions/upload-artifact@v4 | |
if: success() | |
with: | |
name: BlueWallet-${{ env.VERSION_NAME }}(${{ env.NEW_BUILD_NUMBER }}).apk | |
path: ./android/app/build/outputs/apk/release/BlueWallet-${{ env.VERSION_NAME }}(${{ env.NEW_BUILD_NUMBER }}).apk |