diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-12-15 02:03:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 02:03:48 +0000 |
commit | b6b50066c6c69d68955932f0cf251db72f3e16fc (patch) | |
tree | d934203cd43a848ab8efc3fde3bd9f0f8a788c36 /.github | |
parent | e4d5fa3bae1af49e38b5f9f537af4e76d258918c (diff) |
Update cmake.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 11d2bf32..45439eeb 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -56,9 +56,8 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install -# See <https://github.com/actions/upload-artifact/issues/270> -# - name: Upload build -# uses: actions/upload-artifact@v2 -# with: -# name: buildoutput -# path: ${{github.workspace}}/build/ + - name: Upload build + uses: actions/upload-artifact@v2.2.4 + with: + name: buildoutput + path: ${{github.workspace}}/build/ |