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
on: | |
push: | |
branches: | |
- platform-1.x | |
- platform-2.x | |
jobs: | |
# See https://pnpm.io/continuous-integration#github-actions | |
publish: | |
name: pnpm publish | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
with: | |
version: 7.33.6 | |
- uses: actions/[email protected] | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
cache: 'pnpm' | |
- name: pnpm install | |
run: pnpm install -r --no-frozen-lockfile | |
- name: Compile TypeScript | |
run: npm run build | |
# See https://pnpm.io/using-changesets | |
- name: Setup npmrc for pnpm publish | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
- name: pnpm publish (platform) | |
run: pnpm publish platform --no-git-checks |