Compare commits

...

2 commits

Author SHA1 Message Date
fdbe761cb3 fix(): Tying a few loose ends
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
2023-07-01 20:15:20 +02:00
7a5b3b6c51 chore(): Migrates the build to the new pipeline 2023-07-01 20:12:18 +02:00
2 changed files with 52 additions and 18 deletions

View file

@ -1,25 +1,59 @@
---
kind: pipeline
type: docker
name: Build
name: container-check
steps:
- name: build
image: docker:dind
volumes:
- name: docker-socket
path: /var/run/docker.sock
commands:
- docker build -t "nikola:${DRONE_TAG}" /drone/src/
- name: check-build
image: plugins/docker
settings:
registry: scm.project42.io
dockerfile: Dockerfile
username:
from_secret: registry_username
password:
from_secret: registry_password
repo: scm.project42.io/elia/nikola
dry_run: true
squash: true
tags:
- "${DRONE_COMMIT_SHA:0:8}"
trigger:
exclude:
event:
- promote
---
kind: pipeline
name: container-build
steps:
- name: build-latest
image: plugins/docker
settings:
registry: scm.project42.io
dockerfile: Dockerfile
username:
from_secret: registry_username
password:
from_secret: registry_password
repo: scm.project42.io/elia/nikola
dry_run: false
squash: true
tags:
- latest
- "${DRONE_COMMIT_SHA:0:8}"
when:
event:
- tag
- promote
target:
- production
depends_on:
- container-check
volumes:
- name: docker-socket
host:
path: /var/run/docker.sock
trigger:
event:
- tag
- promote
target:
- production

View file

@ -1,5 +1,5 @@
[![Build Status](https://drone.project42.io/api/badges/Elia/nikola-docker/status.svg)](https://drone.project42.io/Elia/nikola-docker)
[![Build Status](https://ci.project42.io/api/badges/elia/nikola-docker/status.svg)](https://ci.project42.io/elia/nikola-docker)
# nikola-docker
The Nikola project dockerized for personal use.
The Nikola project dockerized for personal use.