diff --git a/.github/workflows/publish-windows.yml b/.github/workflows/publish-windows.yml new file mode 100644 index 0000000000000000000000000000000000000000..d1ad2ba008d00282123e27f5e543239ec162d5d6 --- /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 }}