From fa09963bf8d7b2c96997e1a1d8cb65e98874e6b3 Mon Sep 17 00:00:00 2001 From: Karsa Date: Tue, 24 Mar 2026 17:58:37 +0100 Subject: [PATCH] fix(pipeline): revert custom angular publish step. not even this solves it. --- .github/workflows/release.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 975a82e33..f108ea7cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,20 +83,10 @@ jobs: run: pnpm --filter ${{ matrix.package }} test - name: Publish - if: matrix.package != '@lucide/angular' run: pnpm --filter ${{ matrix.package }} publish --access public --no-git-checks --ignore-scripts --tag ${{ inputs.tag }} env: NPM_CONFIG_PROVENANCE: true - - name: Publish - if: matrix.package == '@lucide/angular' - run: | - node -e "const fs=require('fs'); const p='package.json'; const pkg=JSON.parse(fs.readFileSync(p,'utf8')); if(pkg.publishConfig){ delete pkg.publishConfig.directory; if(Object.keys(pkg.publishConfig).length===0) delete pkg.publishConfig; } fs.writeFileSync(p, JSON.stringify(pkg, null, 2)+'\n');" - pnpm publish --no-git-checks --ignore-scripts --tag ${{ inputs.tag }} --access public - working-directory: packages/angular/dist - env: - NPM_CONFIG_PROVENANCE: true - lucide-static: if: github.repository == 'lucide-icons/lucide' runs-on: ubuntu-latest