-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.52 KB
/
build-production.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build & Push (production)
on:
push:
tags: 'v[0-9]+.[0-9]+.[0-9]+'
concurrency:
group: ${{ github.workflow }}
jobs:
build_auto_generators:
uses: dojo-engineering/github-workflows/.github/workflows/remote-payments-dotnet-basic.yaml@main
with:
area:
cloudsdk_container_cluster: production-remotepayments
cloudsdk_core_project: firefly-prod-2018
dockerfile_path: ./build/Dockerfile
namespace: Dojo.AutoGenerators
runner: ubuntu-latest
sha: ${{ github.sha }}
enable_settingsutil: false
disable_docker_build: true
disable_deployment: true
docker-only: true
nuget-package-build-and-push-only: true
service_account_key_path: firefly-dev-2018/remotepayments-nexus-key
secrets:
container_pull_key: ${{ secrets.GH_CONTAINERS_PULLER_KEY }}
build_openapi_generator:
uses: dojo-engineering/github-workflows/.github/workflows/remote-payments-dotnet-basic.yaml@main
with:
area:
cloudsdk_container_cluster: production-remotepayments
cloudsdk_core_project: firefly-prod-2018
dockerfile_path: ./build/Dockerfile
namespace: Dojo.OpenApiGenerator
runner: ubuntu-latest
sha: ${{ github.sha }}
enable_settingsutil: false
disable_docker_build: true
disable_deployment: true
docker-only: true
nuget-package-build-and-push-only: true
service_account_key_path: firefly-dev-2018/remotepayments-nexus-key
secrets:
container_pull_key: ${{ secrets.GH_CONTAINERS_PULLER_KEY }}