Skip to content

chore(config): migrate c12 config system (#287) #240

chore(config): migrate c12 config system (#287)

chore(config): migrate c12 config system (#287) #240

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
BASE_BRANCH: 'main'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: ./.github/actions/setup-node-yarn
- name: Run Build with Nx
run: |
yarn build:all
- name: Create PR or Publish
id: release
uses: changesets/action@v1
with:
title: |
chore: version packages ${{ env.BASE_BRANCH }}
commit: 'chore: version packages'
version: yarn changeset version
publish: bash ./.scripts/publish-packages.sh
env:
BASE_BRANCH: ${{ env.BASE_BRANCH }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}