From 7a081e6d635b50600721e1d2af46edb40e6eedf0 Mon Sep 17 00:00:00 2001 From: AsakuraMizu Date: Wed, 26 Jun 2024 01:37:58 +0800 Subject: [PATCH] ci: adapt to wxt --- .github/workflows/build.yml | 14 +++++++------- .gitignore | 1 - 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a083133..ac7d9b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, 'ci skip')" + if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -14,26 +14,26 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - name: Build Chrome version - run: yarn build:chrome + run: yarn zip:chrome - name: Upload Chrome version uses: actions/upload-artifact@v4 with: name: chrome path: | - dist/ + .output/chrome-mv3/ stats.html - name: Build Firefox version - run: yarn build:firefox + run: yarn zip:firefox - name: Upload Firefox version uses: actions/upload-artifact@v4 with: name: firefox path: | - dist/ + .output/firefox-mv3/ stats.html - - name: Upload Zip version + - name: Upload Zip files uses: actions/upload-artifact@v4 with: name: zip-files path: | - dist-zip/ + .output/*.zip diff --git a/.gitignore b/.gitignore index c2d64dc..bc4effb 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,6 @@ lerna-debug.log* node_modules .output -dist-zip stats.html stats-*.json .wxt