Skip to content

Commit

Permalink
Add release workflow and release script in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
octet-stream committed Oct 23, 2023
1 parent 4947ce2 commit d8c119d
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
58 changes: 58 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Release

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Setup pnpm
id: pnpm-install
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{steps.pnpm-cache.outputs.STORE_PATH}}
key: ${{runner.os}}-pnpm-store-${{hashFiles('**/pnpm-lock.yaml')}}
restore-keys: |
${{runner.os}}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile

- name: Create a Pull Request for a new release
id: changesets
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
uses: changesets/action@v1
with:
title: A new release
commit: Bump version
publish: pnpm run release
version: pnpm exec changeset version
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"cleanup": "del-cli @type lib",
"postinstall": "husky install",
"prepublishOnly": "pnpm run cleanup && pnpm run build && pinst --disable",
"postpublish": "pinst --enable"
"postpublish": "pinst --enable",
"release": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
Expand Down

0 comments on commit d8c119d

Please sign in to comment.