diff options
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 5 |
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 |