Skip to content

Commit 3eb1483

Browse files
authored
Merge pull request #7 from EclipseTrading/technical/add-publish-action-workflow
Technical/add publish action workflow
2 parents 2f977a5 + 58aa3da commit 3eb1483

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [created]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: 14
16+
registry-url: https://npm.pkg.github.com/
17+
- run: npm install
18+
- run: npm run build:gulp
19+
- run: npm publish
20+
env:
21+
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "fin-hypergrid",
2+
"name": "hypergrid",
33
"version": "4.0.0-alpha.0",
44
"description": "Canvas-based high-performance grid",
55
"main": "src/Hypergrid",

0 commit comments

Comments
 (0)