2024-10-17 11:41:36 +02:00
|
|
|
steps:
|
|
|
|
install-npm:
|
|
|
|
image: git.van-hemmen.com/guillaumehemmen/debian-node-firebase:debian_12-node_20
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
|
|
|
|
build-web:
|
|
|
|
image: git.van-hemmen.com/guillaumehemmen/debian-node-firebase:debian_12-node_20
|
|
|
|
commands:
|
|
|
|
- npx expo export --platform web
|
|
|
|
|
|
|
|
docker-master:
|
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
|
|
settings:
|
2024-10-17 12:44:29 +02:00
|
|
|
repo: git.van-hemmen.com/guillaumehemmen/sso-poc-marn
|
2024-10-17 11:41:36 +02:00
|
|
|
tags: latest,${CI_COMMIT_SHA:0:8}
|
|
|
|
registry: git.van-hemmen.com
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- manual
|
|
|
|
branch: 'master'
|
|
|
|
|
|
|
|
docker-other:
|
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
|
|
settings:
|
|
|
|
repo: git.van-hemmen.com/guillaumehemmen/sso-poc-marn
|
|
|
|
tags: ${CI_COMMIT_SHA:0:8-tag-sha},${CI_COMMIT_BRANCH/\//-}
|
|
|
|
registry: git.van-hemmen.com
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- manual
|
|
|
|
branch:
|
|
|
|
exclude: 'master'
|