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