archon-electron/.woodpecker.yml

31 lines
609 B
YAML
Raw Normal View History

2022-05-22 13:06:03 -04:00
workspace:
2022-05-22 13:08:57 -04:00
base: /usr/src
path: app
2022-05-22 13:06:03 -04:00
2022-05-22 13:03:38 -04:00
pipeline:
build:
image: node:16
commands:
- apt update && apt install -y ruby ruby-dev && gem install sass
- npm install
- npm run grunt
package_linux:
image: electronuserland/builder:16
2022-05-22 13:03:38 -04:00
commands:
- npm install
- npm run build-linux
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/archon-*.deb
- dist/archon-*.rpm
when:
event: tag