Skip to content

#20240729.0

#20240729.0 #82

name: Build Daydream API (1.20)
on:
push:
branches: [ ver/1.20.4 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Setup git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Action"
- name : Build and Publish API with Gradle
run: |
echo "::group::Apply Patches"
./gradlew applyGeneratedApiPatches applyApiPatches
echo "::endgroup::"
echo "::group::Build API"
./gradlew Daydream-API:build
echo "::endgroup::"
echo "::group::Publish API to Maven Repository"
./gradlew Daydream-API:publishAllPublicationsToMavenRepository
echo "::endgroup::"
env:
DEPLOY_ID: ${{ secrets.DEPLOY_ID }}
DEPLOY_PW: ${{ secrets.DEPLOY_PW }}