-
Notifications
You must be signed in to change notification settings - Fork 211
52 lines (47 loc) · 1.33 KB
/
rms.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
47
48
49
50
51
name: Publish Terraform OCI OKE RMS Stacks
on:
push:
branches: ["5.x-tf12"]
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "rms"
cancel-in-progress: false
jobs:
network-only:
environment:
name: rms
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/upload-artifact@v3
with:
name: tfoke-rms-network-only
path: ./examples/rms/oke-network-only/
retention-days: 90
if-no-files-found: error
cluster-only:
environment:
name: rms
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/upload-artifact@v3
with:
name: tfoke-rms-cluster-only
path: ./examples/rms/oke-cluster-only/
retention-days: 90
if-no-files-found: error
workers-only:
environment:
name: rms
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/upload-artifact@v3
with:
name: tfoke-rms-workers-only
path: ./examples/rms/oke-workers-only/
retention-days: 90
if-no-files-found: error