Skip to content

Commit

Permalink
Merge pull request #98 from DanielSinclair/patch-2
Browse files Browse the repository at this point in the history
fix: source-zip, source-file alias input value fix
  • Loading branch information
louisgv authored Feb 9, 2025
2 parents 8825b9c + 7ad5147 commit ac23221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bpp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function run(): Promise<void> {
// Path to the zip file to be deployed
const artifact = getInput("file") || getInput("zip") || getInput("artifact")
// Path to the source zip file for firefox submissions
const source = getInput("source") || getInput("sourceFile") || getInput("sourceZip")
const source = getInput("source") || getInput("source-file") || getInput("source-zip")

const versionFile = getInput("version-file")

Expand Down

0 comments on commit ac23221

Please sign in to comment.