fix: replace adaptors in plan with resolved adaptors at install (#857) #158
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
name: Publish | |
on: | |
push: | |
branches: main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '22.12' | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm test | |
- run: pnpm config set "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: pnpm publish -r --report-summary --publish-branch main --access=public | |
- run: pnpm run generate-slack-report | |
env: | |
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} |