Merge pull request #13 from ckb-cell/l1-transfer-virtual #7
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
# Release snapshot packages to NPM. | |
name: Release Snapshots | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release-snapshots: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm i | |
- name: Clear cache | |
run: pnpm run clean:packages | |
- name: Build packages | |
run: pnpm run build:packages | |
- name: Version packages | |
run: npx changeset version --snapshot snap | |
- name: Publish to npm (ignore GitHub) | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: npx changeset publish --snapshot --tag snap | |
createGithubReleases: false | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create commit comment | |
uses: peter-evans/commit-comment@v3 | |
if: ${{ steps.changesets.outputs.published == 'true' }} | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
```json | |
${{ steps.changesets.outputs.publishedPackages }} | |
``` |