Skip to content

Commit

Permalink
Add github building workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
booky10 committed Jul 22, 2023
1 parent 256cde5 commit d1ec71d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build
on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-22.04
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1

- name: Setup java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: gradle

- name: Set git identity
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Actions"
- name: Apply patches
run: ./gradlew applyPatches -Dpaperweight.debug=true --no-daemon

- name: Build reobfuscated paperclip jar
run: ./gradlew createReobfPaperclipJar -Dpaperweight.debug=true --no-daemon

- name: Upload reobfuscated paperclip jar
uses: actions/upload-artifact@v3
with:
name: CloudPlane-Artifacts
path: build/libs/CloudPlane-paperclip-*
if-no-files-found: error

0 comments on commit d1ec71d

Please sign in to comment.