diff --git a/.github/workflows/create-artifact-macos.yml b/.github/workflows/create-artifact-macos.yml new file mode 100644 index 00000000..6b653ebe --- /dev/null +++ b/.github/workflows/create-artifact-macos.yml @@ -0,0 +1,31 @@ +name: Create artifact [MACOS] + +on: + workflow_dispatch: {} + +jobs: + build: + runs-on: macos-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v3 + + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: npm install & build + run: | + npm install + npm run build + + - name: Upload Artifact + uses: actions/upload-artifact@v3 + with: + name: linux-build + retention-days: 3 + path: | + build + !build/*-unpacked + !build/.icon-ico