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 @ahmadrizal1st/tun8n #28

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

release: bump version to v1.3.27 @ahmadrizal1st/tun8n #28

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: "@ahmadrizal1st"
- 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.NPM_TOKEN }}