Skip to content

Add test script to debug release workflow #7

Add test script to debug release workflow

Add test script to debug release workflow #7

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:
commit: 'CI: Version Packages'
title: 'CI: Version Packages'
publish: pnpm publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}