1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-04-14 02:46:02 +02:00
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2025-04-07 10:38:58 +02:00
parent 32abfd9983
commit e176b2e5f6
No known key found for this signature in database
GPG key ID: ADE44D8C9D44FBE4
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -84,7 +84,7 @@ export async function getInputs(): Promise<Inputs> {
export function sanitizeInputs(inputs: Inputs) {
const res = {};
for (const key of Object.keys(inputs)) {
if (key === 'secrets' || key === 'github-token') {
if (key === 'github-token') {
continue;
}
const value: string | string[] | boolean = inputs[key];