From 6eb0b25c75f4802ee9d1afa05df3f7744d42ab7c Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 13 Feb 2020 13:00:37 +0700 Subject: [PATCH] updated --- .github/workflows/electron.yml | 64 +++++++++++++++++----------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml index 38cc3a7..98fce03 100644 --- a/.github/workflows/electron.yml +++ b/.github/workflows/electron.yml @@ -11,42 +11,42 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - name: Context - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - run: echo "$GITHUB_CONTEXT" - - uses: actions/checkout@v1 - with: - fetch-depth: 1 - - name: Use Node.js 10.x - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: yarn install - run: | - yarn install - - name: Publish - run: | - yarn run dist - - name: Cleanup artifacts - if: matrix.os != 'windows-latest' - run: | - mkdir artifacts - mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true + - name: Context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: 10.x + - name: yarn install + run: | + yarn install + - name: Publish + run: | + yarn run dist + - name: Cleanup artifacts + 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: | - mkdir artifacts - mv dist/*.exe artifacts + 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: + env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}