Skip to content

Commit

Permalink
chore: add snapshot release workflow (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShookLyngs authored Mar 6, 2024
1 parent 555e75a commit c3cfc7e
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/snapshot.yml
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 }}
```

0 comments on commit c3cfc7e

Please sign in to comment.