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