MicroUtils/.github/workflows/build.yml

29 lines
1.0 KiB
YAML
Raw Normal View History

2021-03-05 10:24:22 +00:00
2022-08-04 06:50:36 +00:00
name: Build
2021-03-05 10:24:22 +00:00
on: [push]
jobs:
2022-08-04 06:50:36 +00:00
build:
2021-03-05 10:24:22 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
2021-12-29 13:43:19 +00:00
java-version: 11
2021-12-26 14:07:13 +00:00
- name: Fix android 32.0.0 dx
2021-09-22 14:18:14 +00:00
continue-on-error: true
2021-12-26 14:07:13 +00:00
run: cd /usr/local/lib/android/sdk/build-tools/32.0.0/ && mv d8 dx && cd lib && mv d8.jar dx.jar
2021-03-05 10:24:22 +00:00
- 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
2021-03-05 12:37:10 +00:00
- name: Build
run: ./gradlew build
2022-08-04 06:50:36 +00:00
# - name: Publish
# continue-on-error: true
# run: ./gradlew --no-parallel publishAllPublicationsToGithubPackagesRepository
# env:
# GITHUBPACKAGES_USER: ${{ github.actor }}
# GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }}