Skip to content

Commit

Permalink
improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshpaliyal committed Mar 3, 2024
1 parent 58f29b4 commit 78497a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js

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

3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export async function run(): Promise<void> {
Authorization: `Bearer ${apiKey}`
}

core.debug(`Current Path ${__dirname}`)

const signingKey = path.join('signingKey.jks')
fs.writeFileSync(signingKey, signingKeyBase64, 'base64')

Expand All @@ -32,6 +34,7 @@ export async function run(): Promise<void> {
throw new Error('No release files found')
}


Check failure on line 37 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `⏎`
const formData = new FormData()
formData.append('file', fs.createReadStream(releaseFiles[0].path))
formData.append('file', fs.createReadStream(signingKey))
Expand Down

0 comments on commit 78497a8

Please sign in to comment.