repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

commit
d01c111
parent
0a6e572
author
Eric Bower
date
2025-06-06 11:22:50 -0400 EDT
chore: release gha
1 files changed,  +2, -6
M .github/workflows/release.yml
+2, -6
 1@@ -13,8 +13,6 @@ jobs:
 2     steps:
 3       - name: checkout
 4         uses: actions/checkout@v4
 5-      - name: setup deno
 6-        uses: denoland/setup-deno@v2
 7       - name: get version
 8         id: vars
 9         run: echo ::set-output name=version::$(echo ${{github.ref_name}} | sed 's/^v//')
10@@ -24,11 +22,9 @@ jobs:
11           node-version: 18.x
12           registry-url: https://registry.npmjs.com
13       - name: build
14-        run: deno task npm $NPM_VERSION
15-        env:
16-          NPM_VERSION: ${{steps.vars.outputs.version}}
17+        run: npm run build
18       - name: publish
19         run: npm publish --access=public
20-        working-directory: ./npm
21+        working-directory: .
22         env:
23           NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}