Skip to content

fix: name on github release action #9

fix: name on github release action

fix: name on github release action #9

Workflow file for this run

name: Npm-Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeLaGuardo/setup-clojure@12.5
with:
cli: "1.11.1.1139"
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: npm release
run: |
npm ci && \
npm run lib
- uses: JS-DevTools/npm-publish@v3.1.1
with:
token: ${{ secrets.NPM_TOKEN }}