From d41f16e786b1456fc5fbd6bc5d5b21ab7943853e Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 13 Feb 2020 13:08:50 +0700 Subject: [PATCH] fixed yml file --- .github/workflows/electron.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml index 98fce03..9dcb27e 100644 --- a/.github/workflows/electron.yml +++ b/.github/workflows/electron.yml @@ -12,41 +12,41 @@ jobs: steps: - name: Context - env: + env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - uses: actions/checkout@v1 - with: + with: fetch-depth: 1 - name: Use Node.js 10.x - uses: actions/setup-node@v1 - with: + uses: actions/setup-node@v1 + with: node-version: 10.x - name: yarn install - run: | + run: | yarn install - name: Publish - run: | + run: | yarn run dist - name: Cleanup artifacts - if: matrix.os != 'windows-latest' - run: | + if: matrix.os != 'windows-latest' + run: | mkdir artifacts mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true - name: Cleanup artifacts Win - if: matrix.os == 'windows-latest' - run: | + if: matrix.os == 'windows-latest' + run: | mkdir artifacts mv dist/*.exe artifacts - name: Upload artifacts - uses: actions/upload-artifact@v1 - with: + uses: actions/upload-artifact@v1 + with: name: ${{matrix.os}} path: artifacts - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: files: "artifacts/**" env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}