Skip to content

Commit

Permalink
Merge pull request #7 from talview/develop
Browse files Browse the repository at this point in the history
0.3.0
  • Loading branch information
manquer authored Sep 16, 2024
2 parents ad667e7 + ab38e42 commit 1059521
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ runs:
ACTION_PATH: ${{ github.action_path }}
WORKSPACE: ${{ github.workspace }}
SERVICE_PREFIX: ${{ inputs.SERVICE_PREFIX }}
SECRETS: ${{ toJSON(secrets) }}
SECRETS_CONTEXT: ${{ toJSON(secrets) }}
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82136,7 +82136,7 @@ async function run() {
try {
// const version = process.env.VERSION as Version
const SVC_PREFIX = process.env.SERVICE_PREFIX;
const SECRETS = process.env.SECRETS;
const SECRETS = process.env.SECRETS_CONTEXT;
await setup(SVC_PREFIX, SECRETS);
}
catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function run(): Promise<void> {
try {
// const version = process.env.VERSION as Version
const SVC_PREFIX: string = process.env.SERVICE_PREFIX!
const SECRETS: any = process.env.SECRETS!
const SECRETS: any = process.env.SECRETS_CONTEXT!
await setup(SVC_PREFIX, SECRETS)
} catch (error) {
// Fail the workflow run if an error occurs
Expand Down

0 comments on commit 1059521

Please sign in to comment.