Skip to content

Merge branch 'PaperMC:master' into master #35

Merge branch 'PaperMC:master' into master

Merge branch 'PaperMC:master' into master #35

Workflow file for this run

name: Folia 构建成品
on: push
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/checkout@v3
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Configure Git User Details
run: git config --global user.email "[email protected]" && git config --global user.name "Github Actions"
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: Apply Patches
run: ./gradlew applyPatches
- name: Compress All Files
run: tar -cvf project.tar ./*
- name: Build
run: ./gradlew build
- name: publishToMavenLocal
run: ./gradlew publishToMavenLocal
- name: createMojmapPaperclipJar
run: ./gradlew createMojmapPaperclipJar
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: |
build/libs/
- name: automatic releases
uses: marvinpinto/[email protected]
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "PaperMC/Folia 自动构建最新版本"
files: |
build/libs/*.*
project.tar