Skip to content

Commit 5ee8293

Browse files
committed
prefix package name
1 parent ebc51fc commit 5ee8293

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Node.js
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: '22' # Specify your desired Node.js version
22+
node-version: '22'
2323

2424
- name: Install dependencies
2525
run: npm ci
@@ -51,3 +51,10 @@ jobs:
5151
with:
5252
name: npm-package
5353
path: '*.tgz'
54+
55+
- name: Publish to npm
56+
if: false
57+
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
58+
env:
59+
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
60+
run: npm publish ./*.tgz

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "experimental-rescript-webapi",
2+
"name": "@rescript/experimental-rescript-webapi",
33
"version": "0.1.0",
44
"description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
55
"homepage": "https://github.com/rescript-lang/experimental-rescript-webapi",

0 commit comments

Comments
 (0)