Skip to content

Commit

Permalink
Merge pull request #5 from floticerus/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
floticerus authored Mar 13, 2022
2 parents 67ae477 + ded783c commit 28db0cf
Show file tree
Hide file tree
Showing 7 changed files with 464 additions and 229 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -26,9 +27,11 @@ jobs:
with:
node-version: 17.x
cache: yarn
- name: install dependencies
- name: Install dependencies
run: yarn install
- name: publish
- name: Bundle CLI
run: yarn workspace @onlybuys-bot/cli bundle
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn publish
run: cd packages/electron && yarn release
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onlybuys-bot/main",
"version": "0.0.35",
"version": "0.0.37",
"description": "Multi-chain EVM compatible bot that buys new launches",
"engines": {
"node": ">= 16.13"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onlybuys-bot/cli",
"version": "0.0.35",
"version": "0.0.37",
"description": "EVM bot with new pair watcher and trading",
"engines": {
"node": ">= 16.13"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/PersistentStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class PersistentStorage {

// make sure `dir` exists
try {
mkdirSync(this.dir)
mkdirSync(this.dir, { recursive: true })
} catch (err) {
//
}
Expand Down
Loading

0 comments on commit 28db0cf

Please sign in to comment.