mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-29 11:20:02 +00:00
Compare commits
3 commits
489366bb8e
...
aafafc90b2
Author | SHA1 | Date | |
---|---|---|---|
|
aafafc90b2 | ||
|
302dedd538 | ||
|
08c0d24f18 |
2 changed files with 18 additions and 1 deletions
17
.github/workflows/publish-npm.yml
vendored
Normal file
17
.github/workflows/publish-npm.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Publish to NPM
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: "20"
|
||||||
|
- uses: JS-DevTools/npm-publish@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@rbxts/jecs",
|
"name": "@rbxts/jecs",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"description": "Stupidly fast Entity Component System",
|
"description": "Stupidly fast Entity Component System",
|
||||||
"main": "jecs.luau",
|
"main": "jecs.luau",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in a new issue