Compare commits

...

3 Commits

Author SHA1 Message Date
KawaiiPunk 8fbe402386
Attempt to fix CI secret generation
continuous-integration/drone/push Build is failing Details
2024-03-28 15:08:18 +00:00
KawaiiPunk 00c72d17ed
Added catalouge build to .drone
continuous-integration/drone/push Build is failing Details
2024-03-28 15:01:43 +00:00
KawaiiPunk 28cbee691e chore: publish 2.0.1+1.19.3 release
continuous-integration/drone/push Build is failing Details
2024-03-28 14:04:31 +00:00
2 changed files with 23 additions and 7 deletions

View File

@ -18,8 +18,24 @@ steps:
LETS_ENCRYPT_ENV: production
APP_ENTRYPOINT_CONF_VERSION: v1
BACKEND_ENTRYPOINT_CONF_VERSION: v1
SECRET_DB_PASSWORD_VERSION: v1
SECRET_PENPOT_DB_PASSWORD_VERSION: v1
SECRET_SMTP_PASSWORD_VERSION: v1
trigger:
branch:
- main
---
kind: pipeline
name: generate recipe catalogue
steps:
- name: release a new version
image: plugins/downstream
settings:
server: https://build.coopcloud.tech
token:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -2,7 +2,7 @@ version: "3.8"
services:
app:
image: "penpotapp/frontend:1.19.1"
image: "penpotapp/frontend:1.19.3"
networks:
- proxy
- internal
@ -28,10 +28,10 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=2.0.0+1.19.1"
- "coop-cloud.${STACK_NAME}.version=2.0.1+1.19.3"
penpot-backend:
image: "penpotapp/backend:1.19.1"
image: "penpotapp/backend:1.19.3"
volumes:
- penpot_assets:/opt/data
depends_on:
@ -72,7 +72,7 @@ services:
- internal
penpot-exporter:
image: "penpotapp/exporter:1.19.1"
image: "penpotapp/exporter:1.19.3"
environment:
- PENPOT_PUBLIC_URI=http://app
- PENPOT_REDIS_URI=redis://penpot-redis/0
@ -80,7 +80,7 @@ services:
- internal
penpot-postgres:
image: "postgres:15.4"
image: "postgres:16.2"
stop_signal: SIGINT
secrets:
- db_password
@ -95,7 +95,7 @@ services:
- internal
penpot-redis:
image: redis:7.2.1
image: redis:7.2.4
networks:
- internal