Skip to content

Commit

Permalink
Merge pull request #7 from dojoengine/workflows
Browse files Browse the repository at this point in the history
Workflows
  • Loading branch information
ponderingdemocritus authored Sep 29, 2023
2 parents 42bc394 + 17227a3 commit 5cf7abd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,24 @@ jobs:
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
scope: '@dojoengine'

- name: Install dependencies
run: |
cd ${{ matrix.package }}
npm ci
yarn
- name: Bump version
run: |
cd ${{ matrix.package }}
npm version patch -m "Bump version to %s"
yarn version --patch
env:
GH_TOKEN: ${{ secrets.GIT_TOKEN }}

- name: Build
run: |
cd ${{ matrix.package }}
npm run build
yarn build
- name: Push changes
uses: ad-m/github-push-action@master
Expand All @@ -48,6 +49,6 @@ jobs:
- name: NPM Publish
run: |
cd ${{ matrix.package }}
npm publish
yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Empty file modified packages/core/bin/generateComponents.cjs
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion packages/create-burner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dojoengine/create-burner",
"version": "0.0.28",
"version": "0.0.29",
"description": "Useful hooks and functions to create a Starknet burner wallet",
"source": "src/index.ts",
"main": "dist/index.js",
Expand Down

0 comments on commit 5cf7abd

Please sign in to comment.