Update Build-Rollout.yml

This commit is contained in:
Julian Lechner
2025-07-07 18:10:22 +02:00
committed by GitHub
parent 9b26dd39db
commit 1ceecffb8f
+4 -5
View File
@@ -11,7 +11,7 @@ jobs:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Node.js - name: use NodeJS v22.16.0
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: '22.16.0' node-version: '22.16.0'
@@ -23,14 +23,13 @@ jobs:
env: env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install dependencies - name: Install Dependencies
run: npm install run: npm install
- name: Run Build - name: run Rollout Build
run: npm run rolloutBuild run: npm run rolloutBuild
# Optional: Prüfe, ob du wirklich veröffentlichen möchtest - name: Publish Library
- name: Publish Package
run: npm publish run: npm publish
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}