Skip to content

Commit

Permalink
Merge pull request #50 from syfxlin/develop
Browse files Browse the repository at this point in the history
fix(secrets): Load secrets command not working
  • Loading branch information
syfxlin authored Jan 13, 2024
2 parents d7e1099 + abd93fb commit 532971f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: 7.27.1
version: 8.12.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/services/cfg/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class CfgModule {
} else if (options.yaml || ext === ".yaml" || ext === ".yml") {
await this.secret(yaml.parse(value) as Secrets);
} else {
await this.secret(dotenv.parse(file));
await this.secret(dotenv.parse(value));
}
});
secret
Expand Down

0 comments on commit 532971f

Please sign in to comment.