diff options
author | LASER-Yi <[email protected]> | 2021-03-27 13:56:28 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2021-03-27 13:56:28 +0800 |
commit | c2734bd6723f97ff5b93cee3a37d930c3a5f7e22 (patch) | |
tree | 1f56f08e93b5e120f7ad700085a64f21707fb94f /.github | |
parent | cd5054c5dbe63a5310a59901d2220a4a10b4ef67 (diff) | |
download | bazarr-c2734bd6723f97ff5b93cee3a37d930c3a5f7e22.tar.gz bazarr-c2734bd6723f97ff5b93cee3a37d930c3a5f7e22.zip |
Fix issues when uploading artifacts from CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 4 insertions, 8 deletions
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" |