fix native snap image aspect ratio (#197) #287
This file contains hidden or 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: Changesets | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| name: Verify | |
| uses: ./.github/workflows/verify.yml | |
| secrets: inherit | |
| changesets: | |
| name: Create version pull request | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: PR or publish | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| title: "chore: version packages" | |
| commit: "chore: version packages" | |
| createGithubReleases: ${{ github.ref == 'refs/heads/main' }} | |
| publish: pnpm changeset:publish | |
| version: pnpm changeset:version | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - name: Publish prerelease | |
| if: steps.changesets.outputs.published != 'true' | |
| continue-on-error: true | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: | | |
| npm config set "//registry.npmjs.org/:_authToken" "$NPM_TOKEN" | |
| git reset --hard origin/main | |
| pnpm clean | |
| pnpm exec changeset version --no-git-tag --snapshot canary | |
| pnpm changeset:prepublish | |
| pnpm exec changeset publish --no-git-tag --snapshot canary --tag canary |