summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yaml
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-10-05 15:37:24 +0200
committerLukas Larsson <lukas@erlang.org>2020-10-05 15:37:24 +0200
commit5b5e59c62285b64dfb260286d4b07b57cf3bcd31 (patch)
tree4a8cfb0494c3d1fcd35f28d9bb35232a113bb596 /.github/workflows/main.yaml
parentadc535566e795d35f9d526cb837270afab1a7452 (diff)
downloaderlang-5b5e59c62285b64dfb260286d4b07b57cf3bcd31.tar.gz
Fix github actions patch release
Diffstat (limited to '.github/workflows/main.yaml')
-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