From 08c1539dca7801a3dcebdcca53993c3f5a504e75 Mon Sep 17 00:00:00 2001 From: lukasabbe <67807954+lukasabbe@users.noreply.github.com> Date: Thu, 16 Jan 2025 20:53:14 +0100 Subject: [PATCH] new workflow --- .github/workflows/release.yml | 42 +++++++++++++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 43 insertions(+) create mode 100644 .github/workflows/release.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..90ff92f --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,42 @@ +name: Release +on: [workflow_dispatch] + +jobs: + build: + strategy: + matrix: + java: [ + 21, + ] + runs-on: ubuntu-22.04 + permissions: + contents: write + steps: + - name: checkout rep + uses: actions/checkout@v4 + - name: validate gradle wrapper + uses: gradle/wrapper-validation-action@v2 + - name: setup jdk ${{ matrix.java }} + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java }} + distribution: 'microsoft' + - name: make gradle wrapper executable + run: chmod +x ./gradlew + - name: build + run: ./gradlew build + - name: capture build artifacts + if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java + uses: actions/upload-artifact@v4 + with: + name: Artifacts + path: build/libs/ + - uses: Kir-Antipov/mc-publish@v3.3 + with: + modrinth-id: rOrXjyPb + modrinth-token: ${{ secrets.MODRINTH_TOKEN }} + changelog-file: CHANGELOG.md + dependencies: | + fabric-api + modmenu + cloth-config \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3c524d4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +# Test change log \ No newline at end of file