Skip to content

Merge pull request #281 from hqwuzhaoyi/dependabot/npm_and_yarn/tanst… #277

Merge pull request #281 from hqwuzhaoyi/dependabot/npm_and_yarn/tanst…

Merge pull request #281 from hqwuzhaoyi/dependabot/npm_and_yarn/tanst… #277

Workflow file for this run

name: Release
on:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Set up NPM credentials
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install Dependencies
run: pnpm install && ls -a && git status
- name: Create versions PR & prepare publish
id: changesets
uses: changesets/action@v1
# if: github.ref == 'refs/heads/master'
with:
status: git status
# 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 }}