Gregory Ballantine
139568415e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
41 lines
750 B
YAML
41 lines
750 B
YAML
workspace:
|
|
base: /usr/src
|
|
path: app
|
|
|
|
pipeline:
|
|
build:
|
|
image: node:16
|
|
commands:
|
|
- npm install
|
|
- npm run grunt
|
|
|
|
package_linux:
|
|
image: electronuserland/builder:16
|
|
commands:
|
|
- npm install
|
|
- npm run build-linux
|
|
when:
|
|
event: tag
|
|
|
|
package_windows:
|
|
image: electronuserland/builder:16-wine-mono
|
|
commands:
|
|
- npm install
|
|
- npm run build-windows
|
|
when:
|
|
event: tag
|
|
|
|
gitea_release:
|
|
image: plugins/gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_api_key
|
|
base_url: https://git.metaunix.net
|
|
title: "${CI_COMMIT_TAG}"
|
|
files:
|
|
- dist/sentry*.deb
|
|
- dist/sentry*.rpm
|
|
- dist/sentry*.exe
|
|
when:
|
|
event: tag
|