Fix baseURL when building for staging.data.coop
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Sam A. 2023-07-26 17:21:17 +02:00
parent cecf3a26a7
commit 84f78ee052
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 16 additions and 1 deletions

View File

@ -2,7 +2,7 @@ kind: pipeline
name: default
steps:
- name: build
- name: build_stable
image: debian:buster-slim
commands:
- apt-get update; apt-get upgrade -y
@ -10,6 +10,21 @@ steps:
- wget https://github.com/gohugoio/hugo/releases/download/v0.111.2/hugo_extended_0.111.2_linux-amd64.deb -O hugo.deb
- dpkg -i hugo.deb
- hugo --destination _site/
when:
branch:
- main
- name: build_staging
image: debian:buster-slim
commands:
- apt-get update; apt-get upgrade -y
- apt-get install -y wget git
- wget https://github.com/gohugoio/hugo/releases/download/v0.111.2/hugo_extended_0.111.2_linux-amd64.deb -O hugo.deb
- dpkg -i hugo.deb
- hugo --baseURL "https://staging.data.coop" --destination _site/
when:
branch:
- staging
# stable site
- name: docker_stable