We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c99ca commit cc72850Copy full SHA for cc72850
.github/workflows/build-docker.yaml
@@ -16,10 +16,16 @@ jobs:
16
- name: Checkout code
17
uses: actions/checkout@v3
18
19
- - name: Set up Docker Buildx
20
- uses: docker/setup-buildx-action@v2
+ - name: Install OCI
+ run: |
21
+ curl -L https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh > install.sh
22
+ chmod +x install.sh
23
+ ./install.sh --accept-all-defaults
24
+ echo "OCI_CLI_DIR=/home/runner/bin" >> $GITHUB_ENV
25
- - name: Build and push Docker image
- uses: ./.github/actions/build-docker-image
26
+ - name: Update PATH
27
+ run: echo "${{ env.OCI_CLI_DIR }}" >> $GITHUB_PATH
28
+
29
+ - uses: ./.github/actions/node/builder
30
with:
- image: backend
31
+ services: profiles-worker
0 commit comments