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(-) 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 3ff686fe97b9d55345bc1e345a84490b2095cb84 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Mon, 6 Jun 2022 22:23:12 +0700 Subject: minimal trolling --- CODE_OF_CONDUCT.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index f19259e..7a4e294 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -29,7 +29,8 @@ Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks +* Excessive trolling +* Insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission -- 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(-) 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