1
0
Fork 0
mirror of synced 2024-06-02 10:34:40 +12:00

Release ci (#234)

* adding budibase release workflow

* avoid NPM release step
This commit is contained in:
Martin McKeaveney 2020-05-14 21:48:02 +01:00 committed by GitHub
parent f7e2012c89
commit 65c2833886
2 changed files with 57 additions and 22 deletions

View file

@ -12,11 +12,10 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [10.x]
steps:
@ -27,27 +26,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: yarn
# - run: yarn lint
- run: yarn lint
- run: yarn bootstrap
- run: yarn build
# - run: yarn test
- run: yarn test
env:
CI: true
name: Budibase CI
- name: Build/release Electron app
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 }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
package_root: packages/server
# 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 }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
name: Budibase CI

53
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,53 @@
name: Budibase Release
on:
release:
types: [created]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
# - run: yarn lint
- run: yarn bootstrap
- run: yarn build
# - run: yarn test
# publish-npm:
# needs: build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Build/release Electron app
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 }}