chore: release 0.0.1 #13
This file contains hidden or 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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: ./typescript | |
- name: Build packages | |
run: pnpm build | |
working-directory: ./typescript | |
- name: Publish preview packages | |
run: pnpm dlx pkg-pr-new publish 'vbare-compiler' 'vbare' --packageManager pnpm | |
working-directory: ./typescript |