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 ca79baf commit e31abe3Copy full SHA for e31abe3
.github/workflows/npm-publish.yml
@@ -15,7 +15,21 @@ jobs:
15
secrets:
16
npm-token: ${{ secrets.NPM_TOKEN }}
17
with:
18
- build-command: "npm run build"
+ build-command: |
19
+ git config --global user.name 'FreePhoenix888'
20
+ git config --global user.email 'freephoenix888@gmail.com'
21
+
22
+ npx --yes --package @deep-foundation/npm-automation@10.0.18 generate-package-class
23
+ git add ./src/package.ts
24
+ if git diff --staged --quiet
25
+ then
26
+ echo "No changes to commit"
27
+ else
28
+ git commit -m 'docs: update ./src/package.ts'
29
+ git push origin main
30
+ fi
31
32
+ npm run build
33
test-command: "echo 'Tests are temporarily disabled'"
34
should-generate-documentation: true
35
generate-documentation-command: |
0 commit comments