Skip to content

Commit cc72850

Browse files
author
Mikhail Savelyev
committed
(WIP deploy profiles-worker on push)
1 parent 23c99ca commit cc72850

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/build-docker.yaml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v3
1818

19-
- name: Set up Docker Buildx
20-
uses: docker/setup-buildx-action@v2
19+
- name: Install OCI
20+
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
2125
22-
- name: Build and push Docker image
23-
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
2430
with:
25-
image: backend
31+
services: profiles-worker

0 commit comments

Comments
 (0)