-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83b9b5a
commit fff256b
Showing
4 changed files
with
4,193 additions
and
2,281 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,41 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
name: release-please | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v4 | ||
id: release | ||
with: | ||
token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | ||
release-type: simple | ||
- uses: actions/checkout@v4 | ||
if: ${{ steps.release.outputs.release_created }} | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: 'pnpm' | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm install | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm compile | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm format:check | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm lint:check | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm test | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm build | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
if: ${{ steps.release.outputs.release_created }} | ||
- run: pnpm publish --no-git-checks --access=public | ||
if: ${{ steps.release.outputs.release_created }} |
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
Oops, something went wrong.