Skip to content

Commit eb74757

Browse files
committed
ci: remove unnecessary indirection
Signed-off-by: Jendrik Johannes <jendrik.johannes@gmail.com>
1 parent 746f905 commit eb74757

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.github/workflows/flow-pull-request-checks.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ jobs:
2323
build:
2424
name: Code
2525
uses: ./.github/workflows/zxc-build-plugins.yaml
26-
secrets:
27-
gradle-cache-username: ${{ secrets.GRADLE_CACHE_USERNAME }}
28-
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}

.github/workflows/zxc-build-plugins.yaml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,15 @@
22
name: "ZXC: Compile"
33
on:
44
workflow_call:
5-
secrets:
6-
gradle-cache-username:
7-
description: "The username used to authenticate with the Gradle Build Cache Node."
8-
required: true
9-
gradle-cache-password:
10-
description: "The password used to authenticate with the Gradle Build Cache Node."
11-
required: true
125

136
defaults:
147
run:
158
shell: bash
169

1710
env:
1811
LC_ALL: C.UTF-8
19-
GRADLE_CACHE_USERNAME: ${{ secrets.gradle-cache-username }}
20-
GRADLE_CACHE_PASSWORD: ${{ secrets.gradle-cache-password }}
12+
GRADLE_CACHE_USERNAME: ${{ secrets.GRADLE_CACHE_USERNAME }}
13+
GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }}
2114

2215
jobs:
2316
compile:

0 commit comments

Comments
 (0)