Skip to content

chore: upgrade webpack to v5 and fixed workflow (#112) #6

chore: upgrade webpack to v5 and fixed workflow (#112)

chore: upgrade webpack to v5 and fixed workflow (#112) #6

Workflow file for this run

name: Publish to NPM PRO
on:
push:
tags:
- "*"
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.11.0
registry-url: "https://npm-proxy.fury.io/iconscout/"
scope: "@iconscout"
- name: Download & Build Icons
run: |
npm ci --progress=false
npm i @iconscout/unicons@latest
npm run generate
- name: Publish to Gemfury
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.FURY_AUTH_TOKEN }}