We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a712a02 + 99ce72c commit f166516Copy full SHA for f166516
action.yml
@@ -82,3 +82,13 @@ runs:
82
shell: bash
83
run: |
84
cylc version
85
+
86
+ - name: Patch DNS (Mac OS)
87
+ shell: bash
88
+ if: startsWith(runner.os, 'macos')
89
+ run: |
90
+ # NOTE: This is cloned from cylc/release-actions
91
+ # We don't pull this action in from that repo as that would create an
92
+ # additional dependency which would need to be whitelisted by GH orgs.
93
+ echo -e "$(ipconfig getifaddr en0) $(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts
94
+ dscacheutil -q host -a name $(hostname -f)
0 commit comments