Skip to content

Commit d9f2027

Browse files
committed
fix(Camera): reset camera
1 parent 15c19f0 commit d9f2027

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
with:
1414
node-version: '16.x'
1515
registry-url: 'https://registry.npmjs.org'
16-
- run: npm ci
1716
- run: |
1817
git config --global user.email "[email protected]"
1918
git config --global user.name "Geode-solutions"
20-
- run: npm version patch
19+
npm ci
20+
npm run semantic-release
2121
- run: npm publish --access public
2222
env:
2323
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.releaserc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
branches: [
3+
{ name: "master" },
4+
{ name: "next", channel: "next", prerelease: "rc" }
5+
],
6+
plugins: [
7+
'@semantic-release/commit-analyzer',
8+
'@semantic-release/release-notes-generator',
9+
'@semantic-release/github'
10+
]
11+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"description": "OpenSource Vue/Vuetify framework for web applications",
2525
"type": "module",
26-
"version": "0.0.24",
26+
"version": "0.0.0",
2727
"main": "./nuxt.config.js",
2828
"dependencies": {
2929
"@kitware/vtk.js": "^28.8.0",

0 commit comments

Comments
 (0)