Skip to content

chore: improve ci (#553) #174

chore: improve ci (#553)

chore: improve ci (#553) #174

Workflow file for this run

# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
on:
push:
branches:
- main
name: Release
jobs:
release:
name: Create PR or release packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: https://registry.npmjs.org
- uses: actions/cache@v4
id: yarn-unplugged-cache
with:
path: |
.yarn/unplugged/
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v1-
- name: Install the unplugged dependencies and check that the Yarn files do not change during the installation process. If an error occurs, run "yarn install" and commit and push.
run: |
yarn install --immutable
shell: bash
- uses: actions/cache/restore@v4
with:
path: |
**/dist/
**/build/
**/.next/
**/.ultra.cache.json
key: ${{ runner.os }}-ultra-v1-${{ github.head_ref || github.ref_name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-ultra-v1-${{ github.head_ref || github.ref_name }}-
${{ runner.os }}-ultra-v1-main-
- name: Build the entire monorepo
run: |
yarn build
- uses: actions/cache/save@v4
with:
path: |
**/dist/
**/build/
**/.next/
**/.ultra.cache.json
key: ${{ runner.os }}-ultra-v1-${{ github.head_ref || github.ref_name }}-${{ github.sha }}
- name: Create PR or release packages
uses: changesets/action@v1
with:
publish: yarn changeset publish
version: yarn changeset:version
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}