summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-10-19 14:34:51 +0200
committerLukas Larsson <lukas@erlang.org>2020-10-19 14:34:51 +0200
commitb90049578fc63f97d80335869ad6383f7d6c2ed1 (patch)
tree6aaccfd4876ed38dea82c468b59fd24d6882373e /.github
parent7261f424c0643734b8eacd05cb3ac37e22c702ff (diff)
parent5b5e59c62285b64dfb260286d4b07b57cf3bcd31 (diff)
downloaderlang-b90049578fc63f97d80335869ad6383f7d6c2ed1.tar.gz
Merge branch 'lukas/add-github-actions' into maint
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 68a062a365..c61ad3a226 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -179,7 +179,10 @@ jobs:
## Create md5sum
- name: Create pre-build and doc archives
- run: (cd artifacts && md5sum {*.tar.gz,*.txt} > MD5.txt)
+ run: |
+ shopt -s nullglob
+ cd artifacts
+ md5sum {*.tar.gz,*.txt} > MD5.txt
- name: Upload pre-built and doc tar archives
uses: softprops/action-gh-release@v1