Skip to content

Commit

Permalink
chore: setup release action
Browse files Browse the repository at this point in the history
  • Loading branch information
typicalninja committed Oct 20, 2024
1 parent 380fc59 commit 0884af3
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Release

on:
push:
branches:
- main

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

jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
issues: write

steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.6.0
run_install: false

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

- name: Install workspace dependencies
run: pnpm install --frozen-lockfile

- name: Build packages
run: pnpm run build

- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
version: pnpm ci:version
commit: "chore: update versions"
title: "chore: Version Packages"
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true

0 comments on commit 0884af3

Please sign in to comment.