fix(workflow): Fix permissions release worklfow

This commit is contained in:
Eric Fennis
2025-12-05 09:27:34 +01:00
parent 02b35e2518
commit c4e5730bc4

View File

@@ -9,7 +9,7 @@ on:
permissions:
id-token: write # Required for OIDC
contents: read
contents: write
jobs:
create-release:
@@ -23,8 +23,8 @@ jobs:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
cache: 'pnpm'
node-version-file: 'package.json'
cache: "pnpm"
node-version-file: "package.json"
- name: Install dependencies
run: pnpm install --frozen-lockfile
@@ -103,7 +103,7 @@ jobs:
start-release:
if: github.repository == 'lucide-icons/lucide'
needs: create-release
uses: './.github/workflows/release.yml'
uses: "./.github/workflows/release.yml"
secrets: inherit
with:
version: ${{ needs.create-release.outputs.VERSION }}