fixed yml file

This commit is contained in:
Sambo Chea 2020-02-13 13:08:50 +07:00
parent 6eb0b25c75
commit d41f16e786

View File

@ -12,41 +12,41 @@ jobs:
steps: steps:
- name: Context - name: Context
env: env:
GITHUB_CONTEXT: ${{ toJson(github) }} GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT" run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v1 - uses: actions/checkout@v1
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 10.x - name: Use Node.js 10.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 10.x node-version: 10.x
- name: yarn install - name: yarn install
run: | run: |
yarn install yarn install
- name: Publish - name: Publish
run: | run: |
yarn run dist yarn run dist
- name: Cleanup artifacts - name: Cleanup artifacts
if: matrix.os != 'windows-latest' if: matrix.os != 'windows-latest'
run: | run: |
mkdir artifacts mkdir artifacts
mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true
- name: Cleanup artifacts Win - name: Cleanup artifacts Win
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: | run: |
mkdir artifacts mkdir artifacts
mv dist/*.exe artifacts mv dist/*.exe artifacts
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v1
with: with:
name: ${{matrix.os}} name: ${{matrix.os}}
path: artifacts path: artifacts
- name: Release - name: Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
files: "artifacts/**" files: "artifacts/**"
env: env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}