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 f0cd48f commit 8be9087Copy full SHA for 8be9087
.github/workflows/stackhpc.yml
@@ -191,7 +191,9 @@ jobs:
191
- name: Find stackhpc tofu/terraform directory
192
# changed in https://github.com/stackhpc/ansible-slurm-appliance/pull/541
193
run: |
194
- echo STACKHPC_TF_DIR=$(find environments/.stackhpc/ -type d \( -name terraform -o -name tofu \) ) >> "$GITHUB_ENV"
+ echo STACKHPC_TF_DIR=$(find environments/.stackhpc/ -type d -name tofu -o -type d -name terraform) >> "$GITHUB_ENV"
195
+ # something about GH actions parsing eats \( \) type expressions
196
+
197
198
- name: Reimage login and control nodes to image in current branch
199
id: reimage_non_compute
0 commit comments