Skip to content

Update pnpm

Update pnpm #109

Workflow file for this run

name: Release
on:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
environment: release
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
with:
# Needed to ensure Github actions are run even when the pull request is rebased.
# https://github.com/changesets/action/issues/187#issuecomment-1228413850
token: ${{ secrets.GH_PAT_PULL_REQUEST }}
- uses: ./.github/workflows/setup
- name: Update npm config
run: npm config set '//registry.npmjs.org/:_authToken' '${NPM_TOKEN}'
# Create a pull request with all of the package versions and
# changelogs updated and when there are new changesets on master,
# the PR will be updated. When the PR is merged the packages are
# published to NPM automatically.
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm publish -r
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_PULL_REQUEST }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}