Skip to content

Commit 0d65d38

Browse files
committed
More CI attempts....
1 parent 307c145 commit 0d65d38

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/ci-tests-nightly.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
name: Get Variables
1818
runs-on: ubuntu-20.04
1919
outputs:
20-
release_type: ${{steps.cf_release_type.outputs.value }}
2120
version: ${{steps.version.outputs.version }}
2221
build: ${{steps.build.outputs.buildver}}
2322

@@ -32,13 +31,6 @@ jobs:
3231
id: version
3332
run: echo "version=$(git describe --tags --abbrev=0 --match 'v*' --exclude '*-rc*' '@')" >> $GITHUB_OUTPUT
3433

35-
- name: Release Type
36-
id: cf_release_type
37-
uses: christian-draeger/[email protected]
38-
with:
39-
path: './gradle.properties'
40-
property: 'cf_release_type'
41-
4234
- name: Build Version
4335
id: build
4436
run: |
@@ -60,7 +52,7 @@ jobs:
6052
uses: actions/setup-java@v3
6153
with:
6254
distribution: 'temurin'
63-
java-version: "17.0.3"
55+
java-version: "17"
6456

6557
- name: Grant execute permission for gradlew
6658
run: chmod +x gradlew
@@ -104,7 +96,7 @@ jobs:
10496
uses: actions/setup-java@v3
10597
with:
10698
distribution: 'temurin'
107-
java-version: "17.0.3"
99+
java-version: "17"
108100

109101
- name: Grant execute permission for gradlew
110102
run: chmod +x gradlew

src/main/java/dev/compactmods/crafting/client/ClientConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public class ClientConfig {
2121

2222
public static ForgeConfigSpec.BooleanValue ENABLE_DEBUG_ON_F3;
2323

24-
public static int projectorColor = FastColor.ARGB32.color(255, 106, 0, 255);
25-
public static int projectorOffColor = 0xFFFFFFFF;
24+
public static int projectorColor = FastColor.ARGB32.color(255, 255, 106, 0);
25+
public static int projectorOffColor = FastColor.ARGB32.color(255, 137, 137, 137);
2626
public static int placementTime = 160;
2727

2828
static {

0 commit comments

Comments
 (0)