mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2024-11-14 12:13:46 +00:00
28 lines
1.0 KiB
YAML
28 lines
1.0 KiB
YAML
|
name: Publish package to GitHub Packages
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
publishing:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 11
|
||
|
- name: Fix android 32.0.0 dx
|
||
|
continue-on-error: true
|
||
|
run: cd /usr/local/lib/android/sdk/build-tools/32.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: Build
|
||
|
run: ./gradlew build
|
||
|
- name: Publish
|
||
|
continue-on-error: true
|
||
|
run: ./gradlew --no-parallel publishAllPublicationsToGithubPackagesRepository
|
||
|
env:
|
||
|
GITHUBPACKAGES_USER: ${{ github.actor }}
|
||
|
GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|