diff --git a/.github/workflows/update-file.yml b/.github/workflows/update-file.yml index 4f976c7..a483692 100644 --- a/.github/workflows/update-file.yml +++ b/.github/workflows/update-file.yml @@ -68,6 +68,7 @@ jobs: git config --local user.name "Github Actions from commit ${{ github.sha }}" - name: Upload run: | + mkdir -p resources/file rm -rf resources/file/* mv tmp/resources/file/file.tar.gz resources/file/file.tar.gz git add resources/file/file.tar.gz && git commit -m"Update file binary" && git push -f diff --git a/.github/workflows/update-gpg.yml b/.github/workflows/update-gpg.yml index 2a998a1..b2ab33c 100644 --- a/.github/workflows/update-gpg.yml +++ b/.github/workflows/update-gpg.yml @@ -66,6 +66,7 @@ jobs: git config --local user.name "Github Actions from commit ${{ github.sha }}" - name: Upload run: | + mkdir -p resources/gpg rm -rf resources/gpg/* mv tmp/resources/gpg/gpg.tar.gz resources/gpg/gpg.tar.gz git add resources/gpg/gpg.tar.gz && git commit -m"Update gpg binary" && git push -f diff --git a/.github/workflows/update-mingw.yml b/.github/workflows/update-mingw.yml index d3b2ae8..c64b525 100644 --- a/.github/workflows/update-mingw.yml +++ b/.github/workflows/update-mingw.yml @@ -67,6 +67,7 @@ jobs: git config --local user.name "Github Actions from commit ${{ github.sha }}" - name: Upload run: | + mkdir -p resources/mingw_w64 rm -rf resources/mingw_w64/* mv tmp/resources/mingw_w64/mingw_w64.tar.gz resources/mingw_w64/mingw_w64.tar.gz git add resources/mingw_w64/mingw_w64.tar.gz && git commit -m"Update mingw_w64 binary" && git push -f