-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add snapshot release workflow (#11)
- Loading branch information
1 parent
555e75a
commit c3cfc7e
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# 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: Publish to npm (ignore GitHub) | ||
id: changesets | ||
uses: changesets/action@v1 | ||
with: | ||
version: changeset version --snapshot snap | ||
publish: changeset publish --snapshot --tag snap | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_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 }} | ||
``` |