Skip to content

Commit

Permalink
feat:添加工作流文件 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwtesttt authored Jun 3, 2024
1 parent b33cf06 commit 1115d30
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 1 deletion.
101 changes: 101 additions & 0 deletions .github/workflows/build-android.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
name: Build Android
run-name: Creating Production Ready Android App 🚀
on: push

jobs:
build:
name: Build APK
runs-on: ubuntu-latest
# TODO: add the default directory - COMMENT IF IT'S NOT IN SUBFOLDER
# defaults:
# run:
# working-directory: ./frontend
steps:
- name: Checkout source
uses: actions/checkout@v3

- name: Setup java
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "17"

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Install pnpm
run: npm install -g pnpm --registry http://registry.npmmirror.com

- name: install dependencies
run: pnpm i

- name: Create Build Folder
run: npm run build

- name: Add android folder if not present
run: if [ ! -d "./android" ]; then npx cap add android; fi

- name: Capacitor update
run: npx cap update

- name: Capacitor copy
run: npx cap copy

# TODO: Check for folder structure in README for generating splash screen
- name: Generate icons and splash screen to android folder
run: if [ -d "./resources" ]; then npm install @capacitor/assets --save-dev && npx capacitor-assets generate --android; fi

- name: Build app bundle
run: cd android && ./gradlew bundle && ./gradlew assembleDebug

- name: Extract Android signing key from env
run: |
echo "${{ secrets.RELEASE_KEYSTORE }}" > android/release.jks.base64
base64 -d android/release.jks.base64 > android/release.decrypted.jks
- name: Sign dev build
run: jarsigner -keystore android/release.decrypted.jks -storepass "${{ secrets.RELEASE_KEYSTORE_PASSWORD }}" -signedjar ./android/app/build/outputs/bundle/release/app-release-signed.aab ./android/app/build/outputs/bundle/release/app-release.aab release

- name: Check folder content of android output
run: ls ./android/app/build/outputs/bundle/release

- name: Set version
id: version
run: echo "VERSION=v0.0.${GITHUB_RUN_NUMBER}" >> "$GITHUB_OUTPUT"

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
tag_name: ${{ steps.version.outputs.VERSION }}
release_name: Release ${{ steps.version.outputs.VERSION }}
draft: false
prerelease: true

- name: Upload Release Asset .aab
id: upload-release-asset-aab
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./android/app/build/outputs/bundle/release/app-release-signed.aab
# Customize the asset name. If not specified, the file name is used.
asset_name: app-release-signed.aab
asset_content_type: application/zip

- name: Upload Release Asset .apk
id: upload-release-asset-apk
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./android/app/build/outputs/apk/debug/app-debug.apk
# Customize the asset name. If not specified, the file name is used.
asset_name: app-debug.apk
asset_content_type: application/vnd.android.package-archive
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ release
*.njsproj
*.sln
*.sw?

#build-android
release.jks
release.jks.base64
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ WORKDIR /app
COPY package*.json ./

# 安装依赖
RUN npm install --registry http://registry.npmmirror.com
RUN npm install -g pnpm --registry http://registry.npmmirror.com

RUN pnpm i
# 复制项目文件到工作目录
COPY . .

Expand Down

0 comments on commit 1115d30

Please sign in to comment.