1
0
mirror of https://github.com/byulmaru/quesdon synced 2024-11-30 15:58:01 +09:00
quesdon/.gitlab-ci.yml

16 lines
340 B
YAML
Raw Normal View History

2022-04-23 21:45:38 +09:00
image: jdrouet/docker-with-buildx:stable
services:
- docker:dind
2018-08-07 23:39:53 +09:00
stages:
- build
build:
stage: build
2022-04-23 21:45:38 +09:00
2018-08-07 23:39:53 +09:00
script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
2022-04-23 21:45:38 +09:00
- docker buildx create --use
- docker buildx build --push --platform linux/arm64/v8 -t "$CI_REGISTRY_IMAGE" .
2018-08-07 23:39:53 +09:00
only:
- master