File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : LF Oracle Production Deploy
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ services :
7
+ description : Space separated list of services to deploy
8
+ required : true
9
+
10
+ env :
11
+ CLOUD_ENV : lf-oracle-production
12
+ DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
13
+ DOCKERHUB_PASSWORD : ${{ secrets.DOCKERHUB_PASSWORD }}
14
+ ORACLE_USER : ${{ secrets.ORACLE_USER }}
15
+ ORACLE_TENANT : ${{ secrets.ORACLE_TENANT }}
16
+ ORACLE_REGION : ${{ secrets.ORACLE_REGION }}
17
+ ORACLE_FINGERPRINT : ${{ secrets.ORACLE_FINGERPRINT }}
18
+ ORACLE_KEY : ${{ secrets.ORACLE_KEY }}
19
+ ORACLE_CLUSTER : ${{ secrets.ORACLE_CLUSTER }}
20
+
21
+ jobs :
22
+ deploy :
23
+ runs-on : ubuntu-latest
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - uses : ./.github/actions/node/builder
27
+ with :
28
+ services : ${{ github.event.inputs.services }}
You can’t perform that action at this time.
0 commit comments