full reborn

This commit is contained in:
2021-11-24 13:52:27 +06:00
parent 0ac6b0a4df
commit 6a6a197041
246 changed files with 4327 additions and 6952 deletions

View File

@@ -8,6 +8,15 @@ jobs:
- uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Fix android 31.0.0 dx
continue-on-error: true
run: cd /usr/local/lib/android/sdk/build-tools/31.0.0/ && mv d8 dx && cd lib && mv d8.jar dx.jar
- name: Rewrite version
run: |
branch="`echo "${{ github.ref }}" | grep -o "[^/]*$"`"
cat gradle.properties | sed -e "s/^version=\([0-9\.]*\)/version=\1-branch_$branch-build${{ github.run_number }}/" > gradle.properties.tmp
rm gradle.properties
mv gradle.properties.tmp gradle.properties
- name: prebuild
run: ./gradlew clean build
- name: Publish package
@@ -15,4 +24,3 @@ jobs:
env:
GITHUBPACKAGES_USER: ${{ secrets.GITHUBPACKAGES_USER }}
GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
additional_version: "-build${{ github.run_number }}"