feat(pipeline): add release-angular workflow for testing

This commit is contained in:
Karsa
2026-03-24 16:45:40 +01:00
parent f2eab2c30a
commit 76c1b0caa9
2 changed files with 84 additions and 8 deletions

84
.github/workflows/release-angular.yml vendored Normal file
View File

@@ -0,0 +1,84 @@
name: Release Angular
on:
workflow_dispatch:
inputs:
version:
description: Version
required: true
tag:
required: true
description: NPM tag
default: 'latest'
type: choice
options:
- latest
- next
- beta
- alpha
permissions:
id-token: write # Required for OIDC
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
prepare:
if: github.repository == 'lucide-icons/lucide' && contains('["ericfennis", "karsa-mistmere", "jguddas"]', github.actor)
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
steps:
- name: Get the version
id: get_version
run: |
echo $VERSION_REF
echo "VERSION=${VERSION_REF/refs\/tags\/\v}" >> $GITHUB_OUTPUT
env:
VERSION_REF: ${{ inputs.version || github.event.inputs.version || github.ref }}
release:
if: github.repository == 'lucide-icons/lucide'
runs-on: ubuntu-latest
needs: prepare
permissions:
id-token: write # Required for OIDC
contents: read
strategy:
fail-fast: false
matrix:
package:
[
'@lucide/angular'
]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
cache: 'pnpm'
node-version-file: 'package.json'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Set new version
run: pnpm --fail-if-no-match --filter ${{ matrix.package }} version --new-version ${{ needs.prepare.outputs.VERSION }} --no-git-tag-version
- name: Build
run: pnpm --filter ${{ matrix.package }} build
- name: Debug
run: |
pwd
ls -la packages/angular
ls -la packages/angular/dist || true
cat packages/angular/dist/package.json || true
- name: Publish
run: pnpm --filter ${{ matrix.package }} publish --access public --no-git-checks --ignore-scripts --tag ${{ inputs.tag }}
env:
NPM_CONFIG_PROVENANCE: true

View File

@@ -79,14 +79,6 @@ jobs:
- name: Build
run: pnpm --filter ${{ matrix.package }} build
- name: Debug angular
if: matrix.package == '@lucide/angular'
run: |
pwd
ls -la packages/angular
ls -la packages/angular/dist || true
cat packages/angular/dist/package.json || true
- name: Test
run: pnpm --filter ${{ matrix.package }} test