diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 03:52:30 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 03:52:30 +0000 |
commit | d88d17cacef0dc6e3aa7e5e048e13665fa526605 (patch) | |
tree | a7482676b3d28a6c2d6d2dcf30d24bd77d005b38 | |
parent | Run CI on pull_request as well (diff) | |
download | miniserve-d88d17cacef0dc6e3aa7e5e048e13665fa526605.tar.gz miniserve-d88d17cacef0dc6e3aa7e5e048e13665fa526605.zip |
Upload artifacts when building release binaries
We always do this unconditionally so that we can even check out artifacts from PRs.
-rw-r--r-- | .github/workflows/build-release-binaries.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index efe69e9..efed1c1 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -144,6 +144,11 @@ jobs: strip: ${{ matrix.strip }} if: ${{ matrix.compress }} + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + path: ${{ matrix.artifact_name }} + ### # Below this line, steps will only be ran if a tag was pushed. ### |