Skip to content

🚀 release

🚀 release #2

Workflow file for this run

name: '🚀 release'
on:
release:
types: [published]
jobs:
release:
name: 🚀 release
runs-on: ubuntu-latest
steps:
- name: 📚 checkout
uses: actions/checkout@v3
- name: 🟢 node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- name: Install Dependencies
run: npm install --legacy-peer-deps
- name: 🚀 publish
uses: JS-DevTools/npm-publish@v2
with:
access: public
with:

Check failure on line 24 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / 🚀 release

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 24, Col: 9): 'with' is already defined
token: ${{secrets.NPM_AUTH_TOKEN}}