Skip to content

Commit

Permalink
add: debugg logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ionut-cmd committed Dec 12, 2023
1 parent 963994e commit e1ee990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-demo-app-debs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
const assets = await github.rest.repos.listReleaseAssets({ owner, repo, release_id });
const existingAsset = assets.data.find(asset => asset.name === asset_name);
console.log(`Existing assets: ${existingAsset}`)
console.log(`Existing assets: ${existingAsset}`);
if (existingAsset) {
await github.rest.repos.deleteReleaseAsset({
Expand All @@ -206,7 +206,7 @@ jobs:
const asset = fs.readFileSync(path);
console.log(`UPLOAD URL: ${context.payload.release.upload_url}`);
console.log(`release_id: ${process.env.RELEASE_ID;}`);
console.log(`release_id: ${process.env.RELEASE_ID}`);
await github.rest.repos.uploadReleaseAsset({
Expand Down

0 comments on commit e1ee990

Please sign in to comment.