We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ad562 commit 44125d1Copy full SHA for 44125d1
.github/workflows/ci.yml
@@ -137,14 +137,7 @@ jobs:
137
localhost:5000/name/app:1.0.0
138
secrets: |
139
GIT_AUTH_TOKEN=${{ github.token }}
140
- "MYSECRET=aaaaaaaa
141
- bbbbbbb
142
- ccccccccc"
143
- FOO=bar
144
- "EMPTYLINE=aaaa
145
-
146
- bbbb
147
- ccc"
+ MYSECRET=foo
148
149
name: Inspect
150
run: |
src/context.ts
@@ -84,7 +84,7 @@ export async function getInputs(): Promise<Inputs> {
84
export function sanitizeInputs(inputs: Inputs) {
85
const res = {};
86
for (const key of Object.keys(inputs)) {
87
- if (key === 'github-token') {
+ if (key === 'secrets' || key === 'github-token') {
88
continue;
89
}
90
const value: string | string[] | boolean = inputs[key];
0 commit comments