Skip to content

minor

minor #87

Workflow file for this run

name: Publish package
on:
push:
branches:
- release/*
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 5
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
- name: Run publish command
run: npx . publish "." --webhook "${{ secrets.DISCORD_WEBHOOK }}" --access-token "${{ secrets.NPM_TOKEN }}" --version+hash --create-tag --tag ${{ github.ref_name }} --llm-api-key "${{ secrets.LLM_API_KEY }}"