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 8912e7c commit 9c97bceCopy full SHA for 9c97bce
.github/workflows/publish.yml
@@ -14,7 +14,7 @@ jobs:
14
node-version: 16
15
registry-url: https://registry.npmjs.org/
16
- run: npm ci
17
- - run: npm
+ - run: npm run build
18
- run: npm publish --access public
19
env:
20
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
.npmignore
@@ -0,0 +1,4 @@
1
+test.ts
2
+src/*
3
+.*
4
+*config.*
src/cli.ts
@@ -1,7 +1,8 @@
import * as sade from "sade";
-import { version } from "./package.json";
import handler from "./handler";
+const { version } = require("../package.json");
5
+
6
const cli = sade(
7
"github-copy-secrets <secretsDirectory> <owner> <repository>",
8
true
src/package.json
0 commit comments