42 lines
816 B
YAML
42 lines
816 B
YAML
when:
|
|
branch: high-performance
|
|
event: push
|
|
|
|
matrix:
|
|
SERVICE:
|
|
- gateway
|
|
- users
|
|
- companies
|
|
- job_seekers
|
|
- customers
|
|
- payments
|
|
- employees
|
|
- photographers
|
|
- makeup_artists
|
|
- tutors
|
|
- developers
|
|
- video_editors
|
|
- graphic_designers
|
|
- social_media_managers
|
|
- fitness_trainers
|
|
- catering_services
|
|
- ugc_content_creators
|
|
- cron
|
|
|
|
steps:
|
|
- name: build-and-push
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
registry: ghcr.io
|
|
repo: ghcr.io/traceworks2023/nxtgauge-rust-${SERVICE}
|
|
context: .
|
|
dockerfile: apps/${SERVICE}/Dockerfile
|
|
tags:
|
|
- high-performance-latest
|
|
username:
|
|
from_secret: GHCR_USERNAME
|
|
password:
|
|
from_secret: GHCR_TOKEN
|
|
platforms: linux/amd64
|
|
|
|
|