Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish

permissions:
contents: read
id-token: write
Comment thread
oritwoen marked this conversation as resolved.
Comment thread
oritwoen marked this conversation as resolved.

on:
push:
tags:
- "v*"

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
Comment thread
oritwoen marked this conversation as resolved.
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
Comment thread
oritwoen marked this conversation as resolved.
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
registry-url: https://registry.npmjs.org
package-manager-cache: false
- run: pnpm install
- run: pnpm test
- run: pnpm publish
Comment thread
oritwoen marked this conversation as resolved.
Comment thread
oritwoen marked this conversation as resolved.
34 changes: 0 additions & 34 deletions .github/workflows/release.yml

This file was deleted.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gitChecks: false
Comment thread
oritwoen marked this conversation as resolved.
Loading