Create Build-Rollout.yml

This commit is contained in:
Julian Lechner
2025-07-07 17:51:40 +02:00
committed by GitHub
parent 2e11b7f841
commit c5fa12911d
+28
View File
@@ -0,0 +1,28 @@
name: Build Rollout
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout Repository
uses: actions/checkout@v4
- name: use NodeJS v22.16.0
uses: actions/setup-node@v4
with:
node-version: '22.16.0'
- name: install Dependencies
run: npm install
- name: run Build
run: npm run build
- name: Publish Library
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}