Skip to content

Commit

Permalink
Merge branch 'sebastian/prod-2721-think-up-a-test-strategy-for-plural…
Browse files Browse the repository at this point in the history
…-up' of github.com:pluralsh/plural-cli into sebastian/prod-2721-think-up-a-test-strategy-for-plural-up
  • Loading branch information
floreks committed Nov 26, 2024
2 parents ca11410 + d7d534f commit 3c78e81
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ env:
PLURAL_UP_AFFIRM_DEPLOY: true
TESTOUT_PATH: /home/runner/testout
SSH_PATH: /home/runner/.ssh
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
VENOM_VAR_directory: /home/runner/testout/azure
VENOM_VAR_gitRepo: [email protected]:pluralsh/plural-cli-e2e.git
VENOM_VAR_gitRepoPrivateKeyPath: /home/runner/.ssh/github_actions
Expand All @@ -36,8 +35,8 @@ jobs:
run: |
mkdir -p $SSH_PATH
(base64 -d <<< ${{ secrets.E2E_REPO_PRIVATE_KEY }}) >> $VENOM_VAR_gitRepoPrivateKeyPath
chmod 600 VENOM_VAR_gitRepoPrivateKeyPath
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
chmod 600 $VENOM_VAR_gitRepoPrivateKeyPath
eval `ssh-agent -s`
ssh-add $VENOM_VAR_gitRepoPrivateKeyPath
- name: Setup Go
uses: actions/[email protected]
Expand Down Expand Up @@ -92,8 +91,8 @@ jobs:
run: |
mkdir -p $SSH_PATH
(base64 -d <<< ${{ secrets.E2E_REPO_PRIVATE_KEY }}) >> $VENOM_VAR_gitRepoPrivateKeyPath
chmod 600 VENOM_VAR_gitRepoPrivateKeyPath
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
chmod 600 $VENOM_VAR_gitRepoPrivateKeyPath
eval `ssh-agent -s`
ssh-add $VENOM_VAR_gitRepoPrivateKeyPath
- name: Setup Go
uses: actions/[email protected]
Expand Down

0 comments on commit 3c78e81

Please sign in to comment.