We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec9a4d commit 2439891Copy full SHA for 2439891
.github/workflows/ansible-deployments.yml
@@ -20,7 +20,11 @@ jobs:
20
- name: Install ansible lint tools
21
run: sudo apt update; sudo apt install ansible
22
- name: Setup the hosts file
23
- run: printf '[judgehost] \n github-action\tansible_host=localhost' > icpc-wf/ansible/hosts
+ working-directory: ./icpc-wf/ansible
24
+ run: sed -i 's/\[judgehost\]/[removed]/g' hosts; printf '\n[judgehost]\ngithub-action\tansible_host=localhost' >>> hosts
25
+ - name: Generate secure credentials
26
27
+ run: mv group_vars/all/secret.yml{.secret,}
28
- name: Run the default deployment method
29
working-directory: ./icpc-wf/ansible
- run: ls; cat hosts; cat Makefile; make judgehost
30
+ run: cat hosts; make judgehost
0 commit comments