52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
# Automatically build the project and run any configured tests for every push
|
|
# and submitted pull request. This can help catch issues that only occur on
|
|
# certain platforms or Java versions, and provides a first line of defence
|
|
# against bad commits.
|
|
|
|
name:
|
|
on:
|
|
push:
|
|
branches: [ master, dev ]
|
|
pull_request_target:
|
|
branches: [ master, dev ]
|
|
|
|
env:
|
|
REPO_USERNAME: Altarik
|
|
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
java: [ '17' ]
|
|
os: [ ubuntu-latest ]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: validate gradle wrapper
|
|
uses: https://github.com/gradle/wrapper-validation-action@v1
|
|
- name: setup jdk ${{ matrix.Java }}
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
distribution: 'oracle'
|
|
- name: make gradle wrapper executable
|
|
if: ${{ runner.os != 'Windows' }}
|
|
run: |
|
|
chmod +x ./gradlew
|
|
touch local.properties
|
|
echo $REPO_USERNAME
|
|
- name: build
|
|
run: ./gradlew build --no-daemon --max-workers 1
|
|
#- name: test
|
|
# run: ./gradlew test --no-daemon
|
|
deploy:
|
|
runs-on: ${{ ubuntu-latest }}
|
|
if: gitea.ref == 'refs/heads/master'
|
|
needs: build
|
|
steps:
|
|
- name: deploy
|
|
run: ./gradlew publish
|
|
|