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:
- 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}}