Fix AlwaysUpToDate #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Thunderbolt | |
on: | |
push: | |
branches: [ "base", "feat/**/*" ] | |
paths: | |
- "**.patch" | |
- "gradle.properties" | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Release | |
strategy: | |
matrix: | |
base_jdk: [21] | |
os: [ubuntu-22.04] | |
if: "!startsWith(github.event.commits[0].message, '[CI-Skip]')" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up GraalVM ${{ matrix.base_jdk }} | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
java-version: ${{ matrix.base_jdk }} | |
version: latest | |
cache: 'gradle' | |
- name: Configure Git | |
run: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" && git config --global user.name "github-actions[bot]" | |
- name: Apply Patches | |
run: ./gradlew applyPatches --stacktrace | |
- name: Create Reobf Jar | |
run: ./gradlew createReobfPaperclipJar --stacktrace | |
- name: Create Mojmap Jar | |
run: ./gradlew createMojmapPaperclipJar --stacktrace | |
- name: Release Artifacts | |
uses: softprops/[email protected] | |
with: | |
name: "Release for ${{ github.ref_name }}" | |
tag_name: release/${{ github.ref_name }} | |
target_commitish: ${{ github.ref_name }} | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
files: build/libs/*.jar |