Skip to content

Version Packages (#19) #24

Version Packages (#19)

Version Packages (#19) #24

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Release"
on:
push:
branches:
- main
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
if: ${{ github.repository == 'unlike-ltd/github-actions' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Setup Node.js Pnpm & install dependencies
uses: ./setup-pnpm
with:
node-version: 20.x
- name: Create Release Pull Request
id: changesets
uses: changesets/action@f13b1baaa620fde937751f5d2c3572b9da32af23
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}