Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Bump @giscus/react from 2.4.0 to 3.0.0 (#5751) #144

Bump @giscus/react from 2.4.0 to 3.0.0 (#5751)

Bump @giscus/react from 2.4.0 to 3.0.0 (#5751) #144

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches: ["master"]
paths:
- "config/**"
- "npm/**"
- "package.json"
- "pnpm-lock.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
# run only if repo is not a fork
if: github.repository == 'codinasion/codinasion'
name: Release
runs-on: ubuntu-latest
# To use Turborepo Remote Caching, set the following environment variables for the job.
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: CI
run: pnpm lint && pnpm build:packages && pnpm test
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: pnpm version-packages
publish: pnpm publish-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}