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 458f92e commit dee8caeCopy full SHA for dee8cae
.circleci/config.yml
@@ -131,6 +131,9 @@ jobs:
131
- run:
132
name: "Install dependencies"
133
command: 'apk add --update --no-cache jq'
134
+ - run:
135
+ name: "Generate MD5 checksums"
136
+ command: './scripts/generate_md5sum.sh'
137
138
name: "Publish Release on GitHub"
139
command: './scripts/publish_github_release.sh'
scripts/generate_md5sum.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+
3
+for archive in artifacts/*.zip; do
4
+ md5sum $archive >> artifacts/md5sums.txt
5
+done
0 commit comments