Skip to content

fix: add versions to internal packages #187

fix: add versions to internal packages

fix: add versions to internal packages #187

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
if: github.repository == 'ghostdevv/jellycommands'
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9.12.3
- name: Setup Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm package
- name: Create Release Pull Request
uses: changesets/action@v1
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true