This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/.gitlab-ci.yml
Fascinated 1665d9a0ee Update 2 files
- /.gitlab-ci.yml
- /Dockerfile
2023-01-13 23:45:22 +00:00

29 lines
745 B
YAML

publish:
image: docker:latest
stage: build
variables:
DOCKER_DRIVER: overlay
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- echo "hi"
- docker build --pull -t "$CI_REGISTRY_IMAGE" .
- docker push "$CI_REGISTRY_IMAGE"
only:
- main
deploy:
image: alpine:latest
stage: deploy
tags:
script:
- chmod og= $ID_RSA
- apk update && apk add openssh-client
- ssh -i $ID_RSA -o StrictHostKeyChecking=no $SERVER_USER@$SERVER_IP "cd /home/overlay && docker compose pull && docker compose up -d && docker image prune -f"
environment:
name: production
url: https://bs-overlay.fascinated.cc
only:
- main