-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move to monopub, generate docs server-side
- Loading branch information
Showing
115 changed files
with
4,850 additions
and
42,586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Publish Package to npmjs | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: corepack enable | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: pnpm | ||
- run: pnpm i -r | ||
- run: npm run build | ||
- run: npm run docs | ||
- run: npm run copy | ||
- name: Deploy Docs | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs | ||
publish_branch: gh-pages | ||
destination_dir: docs | ||
- run: monopub delete devDependencies,scripts | ||
- run: monopub exec 'npm publish --access public --provenance' | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
node_modules/ | ||
coverage/ | ||
.DS_Store | ||
TAGS | ||
.nyc_output/ | ||
.parcel-cache/ | ||
.vscode/ | ||
*.js.map | ||
coverage/ | ||
docs/ | ||
jsconfig.json | ||
typings/ | ||
typings.json | ||
.vscode/ | ||
shrinkwrap.yaml | ||
node_modules/ | ||
npm-debug.log | ||
shrinkwrap.yaml | ||
t.js | ||
yarn.lock | ||
TAGS | ||
typings.json | ||
typings/ | ||
yarn-error.log | ||
yarn.lock |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.