Skip to content

Commit 2a09de1

Browse files
author
Uroš Marolt
committed
wip oracle cloud
1 parent 248ed43 commit 2a09de1

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 }}

0 commit comments

Comments
 (0)