Skip to content

Commit

Permalink
More verbose renaming command
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Jul 2, 2024
1 parent f8fd64e commit f31d35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ archive_name="${envname}.zip"
curl -L -H "Authorization: token ${GHA_TOKEN}" "https://api.github.com/repos/nsls2-conda-envs/${repo_name}/actions/artifacts/${artifact_id}/zip" > ${archive_name}
unzip -v ${archive_name} # contents info
unzip ${archive_name}
for f in *.yml; do mv $f $f.txt; done
for f in *.yml; do mv -v $f $f.txt; done
# mv -v Dockerfile Dockerfile-${envname}
rm -fv ${archive_name}

0 comments on commit f31d35d

Please sign in to comment.