Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkNerdi committed Jul 3, 2024
1 parent 328332a commit 32fa7d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
script: |
const fs = require('fs');
const fs = require('fs').promises;
const { VERSION, UPLOAD_URL } = process.env;
const files = [
Expand All @@ -168,7 +168,7 @@ jobs:
await github.rest.repos.uploadReleaseAsset({
url: UPLOAD_URL,
name: file,
file: fs.readFileSync('assets/' + file)
data: await fs.readFile('assets/' + file)
});
}
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "desktop",
"productName": "Bloom",
"version": "0.0.16-alpha-15",
"version": "0.0.16-alpha-16",
"description": "Simple and secure web3 wallet for the IOTA and Shimmer ecosystem",
"main": "public/build/main.process.js",
"repository": "[email protected]:bloomwalletio/bloom.git",
Expand Down

0 comments on commit 32fa7d0

Please sign in to comment.