Skip to content

Commit

Permalink
Force success on ssh test
Browse files Browse the repository at this point in the history
  • Loading branch information
jwj019 committed Nov 25, 2024
1 parent fef1b28 commit 163f0ef
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/reusable-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
known_hosts: unnecessary
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
ssh-pkcs8:
Expand All @@ -67,7 +67,7 @@ jobs:
known_hosts: unnecessary
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
ssh-rfc4716:
Expand All @@ -87,7 +87,7 @@ jobs:
known_hosts: unnecessary
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_replace-key_exists:
Expand All @@ -113,7 +113,7 @@ jobs:
if_key_exists: replace
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_replace-key_doesnt_exist:
Expand All @@ -134,7 +134,7 @@ jobs:
if_key_exists: replace
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_ignore-key_exists:
Expand All @@ -160,7 +160,7 @@ jobs:
if_key_exists: ignore
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_ignore-key_doesnt_exist:
Expand All @@ -181,7 +181,7 @@ jobs:
if_key_exists: ignore
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_fail-key_exists:
Expand All @@ -208,7 +208,7 @@ jobs:
continue-on-error: true
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp
key_if_exists_fail-key_doesnt_exist:
Expand All @@ -229,5 +229,5 @@ jobs:
if_key_exists: fail
- name: git clone through SSH
run: |
ssh -vT git@github.com
ssh -vT git@github.com || true
git clone git@github.com:niaid/monarch-actions-key-writer.git tmp

0 comments on commit 163f0ef

Please sign in to comment.