build: test #15
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 | |
on: | |
push: | |
branches: | |
- master | |
- changeset | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
CI: true | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup caching | |
uses: actions/cache@v2 | |
with: | |
path: ${{ env.PNPM_CACHE_FOLDER }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: setup pnpm | |
uses: pnpm/action-setup@v2.0.1 | |
with: | |
version: 6.x | |
- name: setup node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
cache: "pnpm" | |
- name: Set up NPM credentials | |
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: setup pnpm config | |
run: pnpm config set store-dir $PNPM_CACHE_FOLDER | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile && ls -a && git status | |
- name: Create versions PR & prepare publish | |
id: changesets | |
uses: changesets/action@master | |
# if: github.ref == 'refs/heads/master' | |
with: | |
# Custom versioning script in package.json | |
version: pnpm ci:version | |
# Custom versioning script in package.json | |
publish: pnpm ci:publish | |
# Messages | |
commit: "chore(deploy): Release" | |
title: "chore(deploy): Release" | |
env: | |
# npm publish token required for publishing. Set this in secrets | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# automatically available in actions | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |