Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
watercatlxh authored Jul 3, 2023
1 parent 6b978f2 commit 4d0ba85
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Patch and Build and Upload

on:
push:
branches: [ "**" ]
pull_request:

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: Apply Patches
run: ./gradlew applyPatches
- name: Build
run: ./gradlew build
- name: Create
run: ./gradlew createMojmapPaperclipJar
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: BW-Folia-Bundler
path: ./build/libs/folia-bundler-*.jar
if-no-files-found: error
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: BW-Folia-Paperclip
path: ./build/libs/folia-paperclip-*.jar
if-no-files-found: error

0 comments on commit 4d0ba85

Please sign in to comment.