MicroUtils/.github/workflows/build.yml

25 lines
759 B
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-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-11-21 14:32:48 +00:00
- name: Publish
continue-on-error: true
run: ./gradlew publishAllPublicationsToGiteaRepository
env:
2022-11-21 14:50:28 +00:00
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}