Skip to content

Commit

Permalink
Checking container directory and server.key files
Browse files Browse the repository at this point in the history
  • Loading branch information
kryvyifedir committed Feb 18, 2024
1 parent 4c45013 commit 60bd60a
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/pullrequest_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

1 comment on commit 60bd60a

@kryvyifedir
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Disclaimer: this commit was a part of an attempt to use Docker image provided by SF to run CI for the project. Due to the nature of GitHub Actions, a lot of commits had to be made to dev branch during investigation. Changes made during the investigation were reverted. Please ignore this PR

Please sign in to comment.