mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 07:39:09 +08:00
Catch multiple instances
This commit is contained in:
parent
0e36a96ee5
commit
c44e73f0a5
@ -97,7 +97,7 @@ export function exportVariable(name: string, val: any): void {
|
|||||||
* @param secret value of the secret
|
* @param secret value of the secret
|
||||||
*/
|
*/
|
||||||
export function setSecret(secret: string): void {
|
export function setSecret(secret: string): void {
|
||||||
for (const part of secret.split(/[\r\n]/)) {
|
for (const part of secret.split(/[\r\n]+/)) {
|
||||||
if (part) {
|
if (part) {
|
||||||
issueCommand('add-mask', {}, part)
|
issueCommand('add-mask', {}, part)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user