We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce2a5c commit f6adfc9Copy full SHA for f6adfc9
2 files changed
.github/workflows/npm-publish.yml
@@ -0,0 +1,31 @@
1
+name: Publish to npm
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+permissions:
9
+ id-token: write
10
+ contents: read
11
12
+jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Setup Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '20'
25
+ registry-url: 'https://registry.npmjs.org/'
26
27
+ - name: Update npm to latest
28
+ run: npm install -g npm@latest
29
30
+ - name: Publish to npm
31
+ run: npm publish
package.json
@@ -1,6 +1,6 @@
{
"name": "@openworkers/workers-types",
- "version": "0.1.0",
+ "version": "0.1.1",
"description": "TypeScript types for the OpenWorkers runtime",
"license": "MIT",
"repository": {
0 commit comments