PlotSquared/.github/workflows/build.yml

29 lines
891 B
YAML
Raw Normal View History

2021-12-17 21:36:56 +01:00
name: build
2020-11-23 18:32:28 +01:00
2021-12-17 21:36:56 +01:00
on: [ pull_request, push ]
2020-11-23 18:32:28 +01:00
jobs:
build:
2022-01-31 21:12:00 +01:00
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
2021-12-17 21:36:56 +01:00
runs-on: ubuntu-latest
2020-11-23 18:32:28 +01:00
steps:
2021-12-17 21:36:56 +01:00
- name: Checkout Repository
uses: actions/checkout@v3
2021-12-17 21:36:56 +01:00
- name: Validate Gradle Wrapper"
uses: gradle/wrapper-validation-action@v1
2021-12-17 21:36:56 +01:00
- name: Setup Java
uses: actions/setup-java@v3
with:
2021-12-17 21:36:56 +01:00
distribution: temurin
java-version: 17
- name: Clean Build
run: ./gradlew clean build
- name: Determine release status
if: ${{ runner.os == 'Linux' }}
run: |
if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then
echo "STATUS=snapshot" >> $GITHUB_ENV
else
echo "STATUS=release" >> $GITHUB_ENV
fi