File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
runs-on : ${{ matrix.os }}
15
15
steps :
16
16
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
- - name : Check known hosts file
17
+ - name : Setup post check of known hosts file
18
18
uses : pyTooling/Actions/with-post-step@9ceefdbf5dceae8c441fc393ed82344c7ca8bbdb # v3.1.1
19
19
env :
20
20
SSH_KNOWN_HOSTS : ${{ secrets.SSH_KNOWN_HOSTS }}
21
21
with :
22
22
main : |
23
- sh check .sh
23
+ sh noop .sh
24
24
post : |
25
25
sh post_check.sh
26
26
- name : Setup SSH key
29
29
ssh-private-key : ${{ secrets.SSH_PRIVATE_KEY }}
30
30
ssh-known-hosts : ${{ secrets.SSH_KNOWN_HOSTS }}
31
31
log-public-key : false
32
+ - name : Check known hosts file
33
+ shell : sh
34
+ run : |
35
+ sh check.sh
32
36
- name : Install docker (Missing on MacOS)
33
37
if : runner.os == 'macos'
34
38
shell : bash
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ exit 0
You can’t perform that action at this time.
0 commit comments