From 97ac920ff45d0c10c8e39d48d42a7bc89177deed Mon Sep 17 00:00:00 2001
From: bye <bye@byecorps.com>
Date: Wed, 3 Apr 2024 17:52:14 +0100
Subject: [PATCH] work or die

---
 .github/workflows/publish-windows.yml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 .github/workflows/publish-windows.yml

diff --git a/.github/workflows/publish-windows.yml b/.github/workflows/publish-windows.yml
new file mode 100644
index 0000000..d1ad2ba
--- /dev/null
+++ b/.github/workflows/publish-windows.yml
@@ -0,0 +1,27 @@
+name: Publish Windows build
+
+on:
+  push:
+    branches:
+      - "master"
+
+jobs:
+  build:
+    permissions:
+      contents: write
+    runs-on: windows-latest
+
+    strategy:
+      matrix:
+        node-version: [18.x]
+
+    steps:
+      - uses: actions/checkout@v3
+      - name: Use Node.js ${{ matrix.node-version }}
+        uses: actions/setup-node@v3
+        with:
+          node-version: ${{ matrix.node-version }}
+      - run: npm install
+      - run: npm run publish
+        env:
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-- 
GitLab