diff --git a/.github/workflows/format_java.yml b/.github/workflows/format_java.yml index a838fb89497..f88ebb243e3 100644 --- a/.github/workflows/format_java.yml +++ b/.github/workflows/format_java.yml @@ -15,6 +15,8 @@ jobs: formatting: name: Formatting runs-on: ubuntu-latest + env: + DISABLE_BUILDSCRIPT_UPDATE_CHECK: true steps: - name: Checkout Repository diff --git a/.github/workflows/nuclear_test_release.yml b/.github/workflows/nuclear_test_release.yml deleted file mode 100644 index 5f8d389ee63..00000000000 --- a/.github/workflows/nuclear_test_release.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Nuclear Test Release - -on: - push: - branches: - - nuclear-fission -jobs: - build: - runs-on: ubuntu-latest - - permissions: - contents: write # needed to create GitHub releases - - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - - name: Declare some variables - id: vars - shell: bash - run: | - echo "::set-output name=sha_short::$(git rev-parse --short $GITHUB_SHA)" - - - name: Setup Java - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: '17' - - - name: Build Project - uses: gradle/gradle-build-action@v2 - with: - arguments: 'build --build-cache --daemon' # use the daemon here so the rest of the process is faster - generate-job-summary: false - gradle-home-cache-includes: | - caches - jdks - notifications - wrapper - - - name: Publish to GitHub - uses: softprops/action-gh-release@v1 - with: - files: "build/libs/*.jar" - fail_on_unmatched_files: true - prerelease: true - tag_name: "nuclear-testing" - name: "Nuclear Testing ${{ steps.vars.outputs.sha_short }}" - body: "Testing Pre-release for GTCEu Nuclear Update" diff --git a/.github/workflows/publish_project.yml b/.github/workflows/publish_project.yml index 28aa35e34ac..a0284399135 100644 --- a/.github/workflows/publish_project.yml +++ b/.github/workflows/publish_project.yml @@ -24,6 +24,9 @@ jobs: permissions: contents: write # needed to create GitHub releases + env: + DISABLE_BUILDSCRIPT_UPDATE_CHECK: true + steps: - name: Checkout Repository uses: actions/checkout@v4 diff --git a/.github/workflows/test_java.yml b/.github/workflows/test_java.yml index 5ee8e5d2ed6..a1121b02c45 100644 --- a/.github/workflows/test_java.yml +++ b/.github/workflows/test_java.yml @@ -15,6 +15,8 @@ jobs: test: name: Tests runs-on: ubuntu-latest + env: + DISABLE_BUILDSCRIPT_UPDATE_CHECK: true steps: - name: Checkout Repository diff --git a/.github/workflows/update_gradle_cache.yml b/.github/workflows/update_gradle_cache.yml index ba93b16779a..eea90a65fab 100644 --- a/.github/workflows/update_gradle_cache.yml +++ b/.github/workflows/update_gradle_cache.yml @@ -16,6 +16,8 @@ jobs: update-cache: name: Update Grade Cache runs-on: ubuntu-latest + env: + DISABLE_BUILDSCRIPT_UPDATE_CHECK: true steps: - name: Checkout Repository