2023-11-22 01:23:23 +01:00
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches-ignore:
|
2024-11-18 16:46:16 +01:00
|
|
|
|
- main
|
2023-11-22 01:23:23 +01:00
|
|
|
|
workflow_dispatch:
|
|
|
|
|
name: Build
|
|
|
|
|
jobs:
|
|
|
|
|
snapshot:
|
|
|
|
|
#if: ${{!startsWith(github.ref.split(’/’)[2], 'release-please')}}
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
# https://github.com/google-github-actions/release-please-action in case more config is needed
|
|
|
|
|
steps:
|
2024-06-16 05:00:49 +02:00
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-22 01:23:23 +01:00
|
|
|
|
# these if statements ensure that a publication only occurs when
|
|
|
|
|
# a new release is created:
|
2024-06-16 05:00:49 +02:00
|
|
|
|
- name: Cache Gradle packages
|
|
|
|
|
uses: actions/cache@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ~/.gradle/caches
|
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
|
|
|
|
restore-keys: ${{ runner.os }}-gradle
|
|
|
|
|
- name: Set up JDK 17
|
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
|
with:
|
|
|
|
|
distribution: temurin
|
|
|
|
|
java-version: 17
|
2023-12-02 21:23:37 +01:00
|
|
|
|
# - name: Download MC assets
|
|
|
|
|
# run: ./gradlew downloadAssets --info --debug || ./gradlew downloadAssets --info --debug || (sleep 30s && ./gradlew downloadAssets --info --debug)
|
|
|
|
|
# - name: Run DataGen
|
|
|
|
|
# run: ./gradlew runData
|
2024-06-16 05:00:49 +02:00
|
|
|
|
- name: Build and upload preview (run for non-release builds)
|
|
|
|
|
if: ${{ github.ref && !contains( github.ref, 'renovate/deps') }}
|
|
|
|
|
env:
|
|
|
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
|
|
|
|
run: |
|
|
|
|
|
# Build
|
|
|
|
|
./gradlew build
|