From 20cd8814d16d1f3bef46677329d80e08fddb0002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Pern=C3=ADk?= Date: Mon, 1 Apr 2024 14:19:34 +0200 Subject: [PATCH] Update how release built works --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab5d24b..5018a93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,11 +12,17 @@ jobs: run: | npm install npm run build - rm -rf .git node_modules + - name: Prepare files for archiving + env: + FILES: package.json package-lock.json dist src + run: | + mkdir luminar + cp -r $FILES luminar - name: Archive the built package uses: TheDoctor0/zip-release@0.7.6 with: type: zip + path: luminar filename: release.zip - name: Create a release and publish the archive uses: ncipollo/release-action@v1.14.0