updated config
This commit is contained in:
parent
4f886b1dfc
commit
4333c8f395
53
.github/workflows/electron-dev.yml
vendored
Normal file
53
.github/workflows/electron-dev.yml
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
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 For Dev
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: |
|
||||
mkdir artifacts
|
||||
mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true
|
||||
- name: Cleanup artifacts Windowns for Dev
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
mkdir artifacts
|
||||
mv dist/*.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}}
|
53
.github/workflows/electron-sandbox.yml
vendored
Normal file
53
.github/workflows/electron-sandbox.yml
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
name: Sandbox Clinic Desktop
|
||||
|
||||
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 sandbox
|
||||
- name: Cleanup artifacts Linux and macOS
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: |
|
||||
mkdir artifacts
|
||||
mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true
|
||||
- name: Cleanup artifacts Windowns
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
mkdir artifacts
|
||||
mv dist/*.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}}
|
28
.github/workflows/electron.yml
vendored
28
.github/workflows/electron.yml
vendored
@ -1,28 +0,0 @@
|
||||
name: Sandbox Clinic Desktop
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
||||
|
||||
steps:
|
||||
- name: Check out Git repository on Clinic Sandbox
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Install Node.js, NPM and Yarn
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 10
|
||||
|
||||
- name: Build/release Clinic Desktop App
|
||||
uses: samuelmeuli/action-electron-builder@v1
|
||||
with:
|
||||
github_token: ${{ secrets.github_token }}
|
||||
|
||||
# If the commit is tagged with a version (e.g. "v1.0.0"),
|
||||
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
Loading…
Reference in New Issue
Block a user