Skip to content

Commit

Permalink
lowercase the value
Browse files Browse the repository at this point in the history
  • Loading branch information
Firehed committed Aug 18, 2023
1 parent 33d1767 commit 19bfa0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function getUntaggedImageForStage(stage: string): string {
let repo = core.getInput('repository')

if (repo === '') {
repo = github.context.repo.owner + '/' + github.context.repo.repo
repo = (github.context.repo.owner + '/' + github.context.repo.repo).toLowerCase()
}

// Attempt to detect misconfiguration
Expand Down

0 comments on commit 19bfa0a

Please sign in to comment.