Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

release: bump version to v1.3.27 @tun8n/cli #32

release: bump version to v1.3.27 @tun8n/cli

release: bump version to v1.3.27 @tun8n/cli #32

Workflow file for this run

name: Publish Tunn8n to GitHub Packages
on:
push:
tags:
- 'v*'
branches:
- main
- master
jobs:
publish-gpr:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://npm.pkg.github.com'
scope: '@tun8n'
- name: Install dependencies
run: npm ci
- name: Make CLI executable
run: chmod +x bin/index.js
- name: Verify package
run: npm pack --dry-run
- name: Publish to GitHub Packages
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}