Skip to content

Update actions

Update actions #113

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@v4 # v4
- 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 }}