remove github for dev

This commit is contained in:
Sambo Chea 2020-02-13 19:32:50 +07:00
parent 2d415933c5
commit 1431a7b388
2 changed files with 2 additions and 55 deletions

View File

@ -1,53 +0,0 @@
name: Sandbox Clinic Desktop For Dev
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Starting Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout Git Repository
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 Linux and macOS
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
cp -R dist/dev/* artifacts
- name: Cleanup artifacts Windowns
if: matrix.os == 'windows-latest'
run: |
mkdir artifacts
mv dist/dev/*.exe artifacts
- name: Upload artifacts
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/v')
with:
files: "artifacts/**"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

View File

@ -33,12 +33,12 @@ jobs:
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
cp -R dist/sandbox/* artifacts
cp -R dist/{*.deb,*.dmg,*.AppImage} artifacts
- name: Cleanup artifacts Windowns
if: matrix.os == 'windows-latest'
run: |
mkdir artifacts
mv dist/sandbox/*.exe artifacts
mv dist/*.exe artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v1
with: