diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-06-28 14:26:25 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-06-29 01:05:23 +0200 |
commit | deb97ff63bd890e1562f10f0e8b258057f5440fc (patch) | |
tree | 93fcb3fd950b3d3d13756ff5c47b258f4c0f8ba8 /.github/workflows | |
parent | d4b404be754e479b133ac55ea7d371ad2c92283f (diff) |
Do not upload build artifacts for scheduled builds.
* fix binutils build failure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6617a75..467a534 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,6 +3,7 @@ on: push: branches: - main + - tmp pull_request: branches: - main @@ -51,9 +52,17 @@ jobs: source ./tmp/mingw-w64-sysroot/activate.sh x86_64-w64-mingw32-gcc -v x86_64-w64-mingw32-g++ -v - - uses: actions/upload-artifact@v2 + - name: Archive Build Log + if: always() + uses: actions/upload-artifact@v2 with: - name: mingw-w64-toolchain + name: build-log + path: $HOME/.mingw-w64-build-ng/build.log + - name: Upload Toolchain + if: github.event.schedule != '0 13 * * 1' + uses: actions/upload-artifact@v2 + with: + if: github.event.schedule != '0 13 * * 1' path: | ./mingw-w64-toolchain.tbz2 ./mingw-w64-toolchain.tbz2.sha512 |