From 7b624cf1ad882ca28a6f4e11191e60a05efcc6f4 Mon Sep 17 00:00:00 2001 From: Aditya Panda Date: Mon, 5 Jun 2023 22:36:15 -0500 Subject: [PATCH] Workflow --- .github/workflows/main.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40e1e74..fad8fd7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,18 @@ jobs: build: runs-on: windows-latest + strategy: + matrix: + node-version: [18.x] steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm i + - run: npm run build + - name: GitHub Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -22,4 +33,4 @@ jobs: SOURCE_BRANCH: ${{ steps.extract_names.outputs.SOURCE_BRANCH }} SOURCE_TAG: ${{ steps.extract_names.outputs.SOURCE_TAG }} with: - files: ./dist/AEBorderTools.jsx \ No newline at end of file + files: ./dist/zxp/com.bolt.cep.zxp \ No newline at end of file