From c2734bd6723f97ff5b93cee3a37d930c3a5f7e22 Mon Sep 17 00:00:00 2001 From: LASER-Yi Date: Sat, 27 Mar 2021 13:56:28 +0800 Subject: Fix issues when uploading artifacts from CI --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3728ebe4..57dcc1e99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,6 @@ jobs: env: UI_DIRECTORY: ./frontend - strategy: - matrix: - node-version: [14.x] - steps: - name: Checkout repository uses: actions/checkout@v2 @@ -27,10 +23,10 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} restore-keys: ${{ runner.os }}-modules- - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - name: Setup NodeJS + uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node-version }} + node-version: "15.x" - name: Install dependencies run: npm install @@ -43,4 +39,4 @@ jobs: - uses: actions/upload-artifact@v2 with: name: "ui" - path: "${{ env.UI_DIRECTORY }}/frontend/build" + path: "${{ env.UI_DIRECTORY }}/build" -- cgit v1.2.3