update #13
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: Clone and Build Workflow | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Clone private repository | |
uses: actions/checkout@v4 | |
with: | |
repository: stackblitz-labs/stackblitz-ci | |
token: ${{ secrets.PAT }} | |
path: ./sb-ci | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: ./sb-ci | |
- name: Build | |
run: pnpm run build | |
working-directory: ./sb-ci | |
- run: pnpm link ./sb-ci/packages/cli | |
- run: pnpm sb publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |