Compare commits

...

3 commits

Author SHA1 Message Date
EncodedVenom
aafafc90b2
chore: bump (testing npm action)
Some checks are pending
Analysis / Run Luau Analyze (push) Waiting to run
Deploy VitePress site to Pages / build (push) Waiting to run
Deploy VitePress site to Pages / Deploy (push) Blocked by required conditions
Publish to NPM / publish (push) Waiting to run
Unit Testing / Run Luau Tests (push) Waiting to run
2025-01-04 00:36:42 -05:00
EncodedVenom
302dedd538
chore: give a name to the publish npm action (I forgor sorry) 2025-01-04 00:29:30 -05:00
EncodedVenom
08c0d24f18
Create publish-npm.yml (#172) 2025-01-04 06:26:07 +01:00
2 changed files with 18 additions and 1 deletions

17
.github/workflows/publish-npm.yml vendored Normal file
View 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 }}

View file

@ -1,6 +1,6 @@
{
"name": "@rbxts/jecs",
"version": "0.5.0",
"version": "0.5.1",
"description": "Stupidly fast Entity Component System",
"main": "jecs.luau",
"repository": {