Skip to content

Commit

Permalink
chore: release v0.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pyadav committed Oct 4, 2023
1 parent 1e0c68f commit 2c8c9ac
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/js-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,17 @@ jobs:
env:
CI: ''
run: npm run ci:build

- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Run Semantic Release 🚀
run: npm run publish
run: npm run release --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
7 changes: 6 additions & 1 deletion sdks/js/packages/core/.release-it.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"git": {
"requireBranch": "main",
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
"tag": false,
"release": false
},
"npm": {
"ignoreVersion": true
}
}
4 changes: 2 additions & 2 deletions sdks/js/packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@raystack/frontier",
"version": "0.7.7",
"version": "0.7.8",
"description": "A js library for frontier",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down Expand Up @@ -101,4 +101,4 @@
"publishConfig": {
"access": "public"
}
}
}
2 changes: 1 addition & 1 deletion sdks/js/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"clean": {
"dependsOn": ["^clean"]
},
"publish": {
"release": {
"dependsOn": ["^build"]
},
"dev": {
Expand Down

0 comments on commit 2c8c9ac

Please sign in to comment.