Some checks failed
Publish Any Commit / build (push) Failing after 36s
27 lines
481 B
YAML
27 lines
481 B
YAML
name: Publish Any Commit
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup pnpm & install
|
|
uses: https://github.com/wyvox/action-setup-pnpm@v3
|
|
with:
|
|
node-version: 22
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- run: pnpm dlx pkg-pr-new publish --compact --bin
|