Merge pull request #1 from icodesign/changeset-release/main #5
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: Release Package | |
on: | |
push: | |
branches: | |
- main | |
env: | |
CI: true | |
jobs: | |
release: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build package | |
run: pnpm run --filter @icodesign/dolphin build | |
- name: Make sure build artifacts are created (apps/cli/dist/index.cjs) | |
run: | | |
if [ ! -f "apps/cli/dist/index.cjs" ]; then | |
echo "Build artifacts does not exist. Exiting." | |
exit 1 | |
fi | |
- name: Create and publish versions | |
uses: changesets/action@v1 | |
with: | |
publish: pnpm publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |