From a7b2c7ef10122455346b454a9fdae6213b37b53b Mon Sep 17 00:00:00 2001 From: Benjamin Wolf Date: Mon, 16 Nov 2020 18:13:20 +0100 Subject: [PATCH] Fix build if translations are missing --- .github/workflows/build_releasecandidate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_releasecandidate.yml b/.github/workflows/build_releasecandidate.yml index 0769981..78dea32 100644 --- a/.github/workflows/build_releasecandidate.yml +++ b/.github/workflows/build_releasecandidate.yml @@ -52,7 +52,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: | rm -rf ./build/tmp - cp ./docs-ext/curriculum-*.pdf ./build + cp ./docs-ext/curriculum-*.pdf ./build 2>/dev/null || : zip -r release.zip ./build - name: Upload Release Files if: startsWith(github.ref, 'refs/tags/')