1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00
budibase/.github/workflows/release.yml

59 lines
1.6 KiB
YAML
Raw Normal View History

name: Budibase Release
2020-05-16 01:39:27 +12:00
on:
2020-05-19 05:05:36 +12:00
# Trigger the workflow on push with tags,
# but only for the master branch
2020-05-16 01:39:27 +12:00
push:
branches:
- master
tags:
- 'v*'
jobs:
2020-05-15 09:27:38 +12:00
release:
runs-on: ${{ matrix.os }}
# Platforms to build on/for
strategy:
matrix:
2020-05-15 09:27:38 +12:00
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [10.x]
2020-05-15 09:27:38 +12:00
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
2020-05-19 05:05:36 +12:00
- run: yarn lint
- run: yarn bootstrap
- run: yarn build
2020-05-19 05:05:36 +12:00
- run: yarn test
- name: Prepare for app notarization (macOS)
if: startsWith(matrix.os, 'macos')
# Import Apple API key for app notarization on macOS
run: |
mkdir -p ~/private_keys/
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
2020-05-15 09:27:38 +12:00
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
2020-05-16 01:39:27 +12:00
package_root: packages/server
2020-05-15 09:27:38 +12:00
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
mac_certs: ${{ secrets.mac_certs }}
mac_certs_password: ${{ secrets.mac_certs_password }}
2020-05-15 09:27:38 +12:00
# release the app after building
2020-05-16 01:39:27 +12:00
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
# macOS notarization API key
API_KEY_ID: ${{ secrets.api_key_id }}
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}