diff options
Diffstat (limited to '.github/workflows/build-release-binaries.yml')
-rw-r--r-- | .github/workflows/build-release-binaries.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index efe69e9..1c0440c 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -6,6 +6,7 @@ jobs: binaries: name: ${{ matrix.os }} for ${{ matrix.target }} runs-on: ${{ matrix.os }} + timeout-minutes: 30 strategy: matrix: target: @@ -144,6 +145,12 @@ jobs: strip: ${{ matrix.strip }} if: ${{ matrix.compress }} + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.target }} + path: ${{ matrix.artifact_name }} + ### # Below this line, steps will only be ran if a tag was pushed. ### |