修复WiFi迁移下载列表,在迁移后下载列表乱序的问题 #310
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: Build | |
on: | |
push: | |
branches: [ BiLi_PC_Gamer ] | |
pull_request: | |
branches: [ BiLi_PC_Gamer ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Build | |
run: | | |
chmod +x ./gradlew | |
./gradlew clean app:assembleDebug | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Build | |
path: ./app/build/outputs/apk/ |