From daaf76a212681aec3ac0f353e11707252d4e508e Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Mon, 6 Jun 2022 20:57:12 +0700 Subject: stop uploading builds of oneconfig --- .github/workflows/checks.yml | 6 ------ 1 file changed, 6 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 7f7499d..0200f46 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -52,9 +52,3 @@ jobs: - name: Build run: ./gradlew build --no-daemon - - - name: Upload Build Artifacts - uses: actions/upload-artifact@v2 - with: - name: ${{ matrix.version }} Artifacts - path: versions/${{ matrix.version }}/build/libs/ -- cgit From bed244e98e3a0f05bdb5307f2aefd1539bcb4d23 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Mon, 6 Jun 2022 22:32:11 +0700 Subject: Stop using setupGradle for workflow The `setupGradle` task is only needed for developers that need to actually edit the code. --- .github/workflows/checks.yml | 4 ---- 1 file changed, 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0200f46..024bdab 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -46,9 +46,5 @@ jobs: - name: Chmod Gradle run: chmod +x ./gradlew - - name: Setup Gradle - if: steps.cache.outputs.cache-hit != 'true' - run: ./gradlew setupGradle --no-daemon - - name: Build run: ./gradlew build --no-daemon -- cgit