1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Update release.yml

This commit is contained in:
Martin McKeaveney 2020-05-15 14:39:27 +01:00 committed by GitHub
parent d391aa4c8a
commit 77c0509e89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,13 @@
name: Budibase Release
on:
release:
types: [created]
on:
# Trigger the workflow on push,
# but only for the release branch
push:
branches:
- master
tags:
- 'v*'
jobs:
release:
@ -36,13 +41,13 @@ jobs:
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
skip_build: true
package_root: packages/server
# 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
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
# mac_certs: ${{ secrets.mac_certs }}
# mac_certs_password: ${{ secrets.mac_certs_password }}
# windows_certs: ${{ secrets.windows_certs }}