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.
2 parents 6c6229a + df2c42a commit 59baa23Copy full SHA for 59baa23
2 files changed
.github/workflows/release.yml
@@ -0,0 +1,20 @@
1
+on: workflow_dispatch
2
+
3
+jobs:
4
+ publish:
5
+ runs-on: ubuntu-latest
6
+ permissions:
7
+ contents: read
8
+ packages: write # allow GITHUB_TOKEN to publish packages
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: "22"
14
+ - run: npm ci
15
+ - run: npm test
16
+ - uses: JS-DevTools/npm-publish@v3
17
18
+ token: ${{ secrets.GITHUB_TOKEN }}
19
+ registry: "https://npm.pkg.github.com"
20
+ access: restricted
package.json
@@ -1,6 +1,6 @@
{
"name": "athena-classifier-sdk",
- "version": "0.0.0",
+ "version": "0.1.0",
"description": "A Node.js SDK for the Athena classifier that uses gRPC transport.",
"type": "module",
"engines": {
0 commit comments