π¦ v1.2.63 (#1363) #938
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: Release | |
# keep the changelog up to date on every commit to main | |
on: | |
push: | |
branches: | |
- main | |
env: | |
CI: true | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Creating .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
email=$NPM_EMAIL | |
name=$NPM_NAME | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_EMAIL: ${{ secrets.NPM_EMAIL }} | |
NPM_NAME: ${{ secrets.NPM_NAME }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Checkout source | |
uses: actions/checkout@master | |
with: | |
ref: ${{ github.ref }} | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.17.0 | |
- uses: pnpm/action-setup@v2.0.1 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Set Git Identity | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release Pull Request or Deploy | |
uses: changesets/action@v1 | |
with: | |
version: pnpm run version | |
publish: pnpm run release | |
title: 'π¦ Version Update' | |
commit: 'π¦ v{VERSION}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |