We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ede98 commit e025977Copy full SHA for e025977
2 files changed
.github/workflows/publish.yml
@@ -28,3 +28,24 @@ jobs:
28
run: npm publish --provenance --access public
29
env:
30
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
+ github-publish:
32
+ runs-on: ubuntu-latest
33
+
34
+ permissions:
35
+ contents: read
36
+ id-token: write
37
38
+ steps:
39
+ - name: Checkout repository
40
+ uses: actions/checkout@v4
41
42
+ - name: Setup Node.js
43
+ uses: actions/setup-node@v4
44
+ with:
45
+ node-version: '20'
46
+ registry-url: 'https://npm.pkg.github.com'
47
48
+ - name: Publish to npm
49
+ run: npm publish
50
+ env:
51
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@techdivision/opencode-cli",
3
- "version": "0.3.1",
+ "version": "0.3.2",
4
"description": "CLI tools for OpenCode plugin management",
5
"type": "module",
6
"bin": {
0 commit comments