Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d1e075fa3b | |||
| ed90735ba0 |
@@ -101,7 +101,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Publish to npm
|
- name: Publish to npm
|
||||||
if: steps.check_tag.outputs.exists == 'false'
|
if: steps.check_tag.outputs.exists == 'false'
|
||||||
run: NODE_AUTH_TOKEN="" npm publish --provenance --access public
|
run: npm publish --provenance --access public
|
||||||
|
|
||||||
- name: Summary
|
- name: Summary
|
||||||
if: always()
|
if: always()
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pullfrog",
|
"name": "pullfrog",
|
||||||
"version": "0.0.196",
|
"version": "0.0.197",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"pullfrog": "dist/cli.mjs",
|
"pullfrog": "dist/cli.mjs",
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ function runNpx(context: RuntimeContext, packageSpec: string, cliArgs: string[])
|
|||||||
? join(context.nodeBinDir, "npx.cmd")
|
? join(context.nodeBinDir, "npx.cmd")
|
||||||
: join(context.nodeBinDir, "npx");
|
: join(context.nodeBinDir, "npx");
|
||||||
execFileSync(npxPath, ["--yes", packageSpec, ...cliArgs], {
|
execFileSync(npxPath, ["--yes", packageSpec, ...cliArgs], {
|
||||||
cwd: context.actionRoot,
|
cwd: process.env.GITHUB_WORKSPACE || context.actionRoot,
|
||||||
stdio: "inherit",
|
stdio: "inherit",
|
||||||
env: context.env,
|
env: context.env,
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user