From 60bd60ad454738eaf8370d4e28d8e4e6e949dc66 Mon Sep 17 00:00:00 2001 From: Fedir Kryvyi Date: Sun, 18 Feb 2024 22:06:21 +0100 Subject: [PATCH] Checking container directory and server.key files --- .github/workflows/pullrequest_build.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest_build.yml b/.github/workflows/pullrequest_build.yml index 5a5150e..b3fc957 100644 --- a/.github/workflows/pullrequest_build.yml +++ b/.github/workflows/pullrequest_build.yml @@ -25,11 +25,6 @@ jobs: with: fetch-depth: 0 - # Checkout the Source code from the latest commit - - name: Checking server.key - run: | - cat server.key - # Installing NPM so that SFDX can be installed # - name: Installing NPM # run: | @@ -40,11 +35,23 @@ jobs: # run: | # npm install @salesforce/cli --global + + # Creating new .key for .crt file stored in the Connected App - name: Creating .key file run: | touch server.key echo -e "$SERVER_KEY" >> server.key + + # Container DIR + - name: Container DIR + run: | + ls + + # Checkout the Source code from the latest commit + - name: Checking server.key + run: | + cat server.key # Authorizing to DevHub - name: Authorizing the DevHub