From e9426aed817f6c672751b350bbd4d294be007d96 Mon Sep 17 00:00:00 2001 From: douira Date: Sun, 24 Nov 2024 04:43:05 +0100 Subject: [PATCH] delete github workflows to make it stop sending me emails --- .github/workflows/build-release.yml | 51 ----------------------------- .github/workflows/build.yml | 32 ------------------ 2 files changed, 83 deletions(-) delete mode 100644 .github/workflows/build-release.yml delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml deleted file mode 100644 index 30577674d7..0000000000 --- a/.github/workflows/build-release.yml +++ /dev/null @@ -1,51 +0,0 @@ -# This workflow will build a Java project with Brachyra -# For more information see: docs/development/brachyura.md - -name: Release script - -on: - release: - types: - - published - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 21 - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - cache-read-only: false - - - name: Run build with Gradle Wrapper - run: ./gradlew build -Dbuild.release=true - - - name: Upload artifacts to Modrinth and GitHub - uses: Kir-Antipov/mc-publish@v3.3 - with: - modrinth-id: YL57xq9U - modrinth-token: ${{ secrets.MODRINTH_TOKEN }} - modrinth-featured: true - - curseforge-id: 455508 - curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} - - github-token: ${{ secrets.GITHUB_TOKEN }} - - files: build/libs/!(*-@(dev|sources|all)).jar - - version-type: release - - loaders: fabric quilt - - dependencies: sodium - - version-resolver: latest # Defaults to selecting the latest compatible version of Minecraft, using the tag from the fabric.mod.json diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 713c9b7ec9..0000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -# This workflow will build a Java project with Brachyra -# For more information see: docs/development/brachyura.md - -name: Java CI with Gradle - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 21 - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - cache-read-only: false - - - name: Run build with Gradle Wrapper - run: ./gradlew build - - - name: Upload built JAR (Fabric) - uses: actions/upload-artifact@v3 - with: - name: iris-artifacts - path: build/libs