We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba57b54 commit f2f2ad5Copy full SHA for f2f2ad5
1 file changed
.github/workflows/update_available_software.yml
@@ -32,8 +32,9 @@ jobs:
32
33
# download https://eessi.io/api_data/data/eessi_api_metadata_software.json
34
# to where it's expected by docs/available_software/macros.py and scripts/available_software/available_software.py
35
- mkdir -p docs/available_software/data
36
- cd docs/available_software/data
+ data_dir="docs/available_software/data"
+ mkdir -p ${data_dir}
37
+ cd ${data_dir}
38
curl -OL https://eessi.io/api_data/data/eessi_api_metadata_software.json
39
cd -
40
@@ -54,7 +55,7 @@ jobs:
54
55
fi
56
57
# remove the data directory containing the original JSON file, or it'll end up in the PR being opened
- rm -f docs/available_software/data
58
+ rm -f ${data_dir}
59
60
- name: create pull request
61
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
0 commit comments