File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed
Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 55 workflow_dispatch :
66
77env :
8+ CLOUD_ENV : lf-oracle-production
89 ORACLE_DOCKER_USERNAME : ${{ secrets.ORACLE_DOCKER_USERNAME }}
910 ORACLE_DOCKER_PASSWORD : ${{ secrets.ORACLE_DOCKER_PASSWORD }}
11+ ORACLE_USER : ${{ secrets.ORACLE_USER }}
12+ ORACLE_TENANT : ${{ secrets.ORACLE_TENANT }}
13+ ORACLE_REGION : ${{ secrets.ORACLE_REGION }}
14+ ORACLE_FINGERPRINT : ${{ secrets.ORACLE_FINGERPRINT }}
15+ ORACLE_KEY : ${{ secrets.ORACLE_KEY }}
16+ ORACLE_CLUSTER : ${{ secrets.ORACLE_CLUSTER }}
1017
1118jobs :
1219 build :
@@ -16,10 +23,16 @@ jobs:
1623 - name : Checkout code
1724 uses : actions/checkout@v3
1825
19- - name : Set up Docker Buildx
20- uses : docker/setup-buildx-action@v2
26+ - name : Install OCI
27+ run : |
28+ curl -L https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh > install.sh
29+ chmod +x install.sh
30+ ./install.sh --accept-all-defaults
31+ echo "OCI_CLI_DIR=/home/runner/bin" >> $GITHUB_ENV
2132
22- - name : Build and push Docker image
23- uses : ./.github/actions/build-docker-image
33+ - name : Update PATH
34+ run : echo "${{ env.OCI_CLI_DIR }}" >> $GITHUB_PATH
35+
36+ - uses : ./.github/actions/node/builder
2437 with :
25- image : backend
38+ services : profiles-worker
You can’t perform that action at this time.
0 commit comments