remove github for dev
This commit is contained in:
parent
2d415933c5
commit
1431a7b388
53
.github/workflows/electron-dev.yml
vendored
53
.github/workflows/electron-dev.yml
vendored
@ -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}}
|
4
.github/workflows/electron-sandbox.yml
vendored
4
.github/workflows/electron-sandbox.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user