Skip to content

Commit 7bd5701

Browse files
committed
Update package publishing workflow
1 parent 0fd8721 commit 7bd5701

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Test
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: 12
19+
node-version: '10.x'
2020
- run: npm ci
2121
- run: npm run build --if-present
2222
- run: npm test
@@ -29,9 +29,9 @@ jobs:
2929
- uses: actions/checkout@v2
3030
- uses: actions/setup-node@v1
3131
with:
32-
node-version: 12
32+
node-version: '10.x'
3333
registry-url: 'https://registry.npmjs.org'
34-
- run: npm ci
34+
- run: npm install
3535
- run: npm publish
3636
env:
3737
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -44,10 +44,10 @@ jobs:
4444
- uses: actions/checkout@v2
4545
- uses: actions/setup-node@v1
4646
with:
47-
node-version: 12
47+
node-version: '10.x'
4848
registry-url: 'https://npm.pkg.github.com'
4949
scope: '@andstor'
50-
- run: npm ci
50+
- run: npm install
5151
- run: npm publish
5252
env:
5353
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "three-voxel-loader",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "three.js plugin for loading voxel data",
55
"main": "lib/voxel-loader.js",
66
"scripts": {

0 commit comments

Comments
 (0)