Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Q2297045667 authored Apr 21, 2024
1 parent 21385df commit 8831856
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Auto Patch and Build

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: '21'
- 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 Mojmap Bundler Jar
run: ./gradlew createMojmapBundlerJar
- name: Build Mojmap Paperclip Jar
run: ./gradlew createMojmapPaperclipJar
- name: Build Reobf Bundler Jar
run: ./gradlew createReobfBundlerJar
- name: Build Reobf Paperclip Jar
run: ./gradlew createReobfPaperclipJar
- uses: "actions/upload-artifact@v3"
with:
name: "Folia"
path: "build/libs/*.jar"
- name: Set outputs
id: short_sha
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
files: "build/libs/*.jar"
body: |
Commit ${{ steps.short_sha.outputs.sha_short }}
This release is automatically compiled by GitHub Actions
name: Folia Automation Compile ${{ steps.short_sha.outputs.sha_short }}
draft: false
tag_name: commit-${{ steps.short_sha.outputs.sha_short }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_KEY }}
GITHUB_REPOSITORY: Echoflare/Folia

0 comments on commit 8831856

Please sign in to comment.