From c5fa12911d9b50905134529ce7fd4a4d55203358 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 7 Jul 2025 17:51:40 +0200 Subject: [PATCH] Create Build-Rollout.yml --- .github/workflows/Build-Rollout.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/Build-Rollout.yml diff --git a/.github/workflows/Build-Rollout.yml b/.github/workflows/Build-Rollout.yml new file mode 100644 index 0000000..f612d10 --- /dev/null +++ b/.github/workflows/Build-Rollout.yml @@ -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}} +