Merge pull request #140 from AbstractSDK/adair/useClaimNamespace #219
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: Main | |
on: | |
push: | |
branches: [mainline] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
verify: | |
name: Verify | |
uses: ./.github/workflows/verify.yml | |
secrets: inherit | |
changesets: | |
name: Changesets | |
# needs: verify | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
submodules: true | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Create version pull request or publish to npm | |
id: changesets | |
uses: changesets/[email protected] | |
with: | |
title: "chore: version packages" | |
commit: "chore: version packages" | |
publish: pnpm changeset:release | |
version: pnpm changeset:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# - name: Publish CJS bundle to npm | |
# if: steps.changesets.outputs.published == 'true' | |
# run: pnpm cjs:release '${{ steps.changesets.outputs.publishedPackages }}' |