anyway/.gitea/workflows/backend_build-deploy-stg.yaml
Remy Moll 2f901e008e
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Failing after 0s
Build and deploy the backend to staging / Deploy to production (pull_request) Failing after 0s
slight workflow test
2024-09-21 13:12:56 +02:00

26 lines
585 B
YAML

on:
pull_request:
branches:
- main
paths:
- backend/**
name: Build and deploy the backend to staging
jobs:
build-and-push:
name: Build and push image
uses: anydev/anyway/.gitea/workflows/workflow_build-image.yaml
with:
tag: unstable
secrets:
PACKAGE_REGISTRY_ACCESS: ${{ secrets.PACKAGE_REGISTRY_ACCESS }}
deploy-prod:
name: Deploy to production
uses: anydev/anyway/.gitea/workflows/workflow_deploy-container.yaml
with:
environment: stg
secrets:
PACKAGE_REGISTRY_ACCESS: ${{ secrets.KUBE_CONFIG }}