Skip to content

Commit f69f64d

Browse files
committed
fix password variable names
1 parent 7db610c commit f69f64d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "1password-action",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"description": "Import items from 1Password securely",
66
"main": "lib/main.js",

Diff for: src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ async function requestItems(
139139
)
140140
}
141141

142-
const passwordOutputName = `${itemRequest.outputName}_password`
142+
const passwordOutputName = `${itemRequest.outputName}`
143143
core.debug(`Setting password variable ${passwordOutputName}`)
144144
core.setSecret(password)
145145
core.setOutput(passwordOutputName, password)

0 commit comments

Comments
 (0)