diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 97c21820..66b0d296 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: - name: Installing Node uses: actions/setup-node@v1 with: - node-version: 10 + node-version: 15 - name: Install deps run: | diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 3e8eb1fc..69c5fba1 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -11,7 +11,7 @@ jobs: - name: Install Node uses: actions/setup-node@v1 with: - node-version: 10 + node-version: 15 - name: Install deps run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index aafc897b..b4d76ea8 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -30,7 +30,7 @@ jobs: - name: Build native deps run: scripts/build-native.js env: - ARCH: ${{arch}} + ARCH: ${{matrix.arch}} - name: Webpack run: yarn run build @@ -38,7 +38,7 @@ jobs: - name: Prepackage plugins run: scripts/prepackage-plugins.js env: - ARCH: ${{arch}} + ARCH: ${{matrix.arch}} - run: sed -i '' 's/updateInfo = await/\/\/updateInfo = await/g' node_modules/app-builder-lib/out/targets/ArchiveTarget.js @@ -46,7 +46,7 @@ jobs: run: scripts/build-macos.js if: github.repository == 'Eugeny/terminus' && github.event_name == 'push' env: - ARCH: ${{arch}} + ARCH: ${{matrix.arch}} GH_TOKEN: ${{ secrets.GH_TOKEN }} CSC_LINK: ${{ secrets.CSC_LINK }} CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} @@ -58,7 +58,7 @@ jobs: run: scripts/build-macos.js if: github.repository != 'Eugeny/terminus' || github.event_name != 'push' env: - ARCH: ${{arch}} + ARCH: ${{matrix.arch}} # DEBUG: electron-builder,electron-builder:* - name: Package artifacts @@ -71,11 +71,11 @@ jobs: - uses: actions/upload-artifact@master name: Upload PKG with: - name: macOS .pkg (${{arch}}) + name: macOS .pkg (${{matrix.arch}}) path: artifact-pkg - uses: actions/upload-artifact@master name: Upload ZIP with: - name: macOS .zip (${{arch}}) + name: macOS .zip (${{matrix.arch}}) path: artifact-zip diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 72f5e640..1071162f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,7 +11,7 @@ jobs: - name: Installing Node uses: actions/setup-node@v1 with: - node-version: 10 + node-version: 15 - name: Build shell: powershell