mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-08-09 18:52:50 +00:00
33 lines
No EOL
649 B
YAML
33 lines
No EOL
649 B
YAML
|
|
buildMac:
|
|
stage: buildAndDeployElectron
|
|
tags:
|
|
- m1-macos
|
|
before_script:
|
|
- cd receivers/electron
|
|
script:
|
|
- npm install
|
|
- npm run build
|
|
- npm run make -- --platform="darwin" --arch="arm64"
|
|
- npm run make -- --platform="darwin" --arch="x64"
|
|
when: manual
|
|
|
|
buildLinux:
|
|
stage: buildAndDeployElectron
|
|
tags:
|
|
- fcast
|
|
before_script:
|
|
- cd receivers/electron
|
|
script:
|
|
- npm install
|
|
- npm run build
|
|
- npm run make -- --platform="darwin" --arch="arm64"
|
|
when: manual
|
|
|
|
deploy:
|
|
stage: buildAndDeployElectron
|
|
# before_script:
|
|
# - cd receivers/electron
|
|
script:
|
|
- sh deploy.sh
|
|
when: manual |