Update release.yml

This commit is contained in:
Martin McKeaveney 2020-05-14 22:27:38 +01:00 committed by GitHub
parent 4689142912
commit 81902510c8
1 changed files with 28 additions and 37 deletions

View File

@ -5,13 +5,15 @@ on:
types: [created] types: [created]
jobs: jobs:
build: release:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
# Platforms to build on/for
strategy: strategy:
matrix: matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [10.x] node-version: [10.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
@ -22,38 +24,27 @@ jobs:
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn build - run: yarn build
# - run: yarn test # - run: yarn test
# - name: Publish NPM
# run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.npm_token}}
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.npm_token}}
# publish-npm: - name: Build/release Electron app
# needs: build uses: samuelmeuli/action-electron-builder@v1
# runs-on: ubuntu-latest with:
# steps: # GitHub token, automatically provided to the action
# - uses: actions/checkout@v2 # (No need to define this secret in the repo settings)
# - uses: actions/setup-node@v1 github_token: ${{ secrets.github_token }}
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.npm_token}}
publish-electron: # release the app after building
needs: [build] package_root: packages/server
runs-on: ${{ matrix.os }} release: true
strategy: # mac_certs: ${{ secrets.mac_certs }}
matrix: # mac_certs_password: ${{ secrets.mac_certs_password }}
os: [macos-latest, ubuntu-latest, windows-latest] # windows_certs: ${{ secrets.windows_certs }}
steps: # windows_certs_password: ${{ secrets.windows_certs_password }}
- name: Build/release Electron app # snapcraft_token: ${{ secrets.snapcraft_token }}
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# release the app after building
package_root: packages/server
release: true
# mac_certs: ${{ secrets.mac_certs }}
# mac_certs_password: ${{ secrets.mac_certs_password }}
# windows_certs: ${{ secrets.windows_certs }}
# windows_certs_password: ${{ secrets.windows_certs_password }}
# snapcraft_token: ${{ secrets.snapcraft_token }}