From 48e1b1c69326818f02b6264837616814b3e6b84d Mon Sep 17 00:00:00 2001 From: Keegan Good Date: Sat, 2 Mar 2024 18:14:30 -0800 Subject: [PATCH] updated github action workflow --- .github/workflows/deploy.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 61e49d5..4c846ee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,11 +3,12 @@ on: branches: - replace-nx-with-turborepo -name: 'Install Oracle CLI' - run: | - curl -L -O https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh - chmod +x install.sh - ./install.sh --accept-all-defaults - echo "::add-path::/home/runner/bin" - exec -l $SHELL +jobs: + install_oracle_cli: + run: | + curl -L -O https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh + chmod +x install.sh + ./install.sh --accept-all-defaults + echo "::add-path::/home/runner/bin" + exec -l $SHELL