diff options
| author | Denis Evsyukov <[email protected]> | 2020-02-24 17:07:13 +0300 |
|---|---|---|
| committer | Denis Evsyukov <[email protected]> | 2020-02-24 17:07:13 +0300 |
| commit | 715c82e390c232e659fd81a6a6dc52c35e797315 (patch) | |
| tree | 6d54a8460287b0d7882553e2f2eb926bd45607c8 | |
| parent | Fix (diff) | |
| download | t-715c82e390c232e659fd81a6a6dc52c35e797315.tar.xz t-715c82e390c232e659fd81a6a6dc52c35e797315.zip | |
fix
| -rw-r--r-- | .github/workflows/publish-binaries.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index 3a5de24..c67c5ed 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -18,7 +18,7 @@ jobs: - name: Build shell: bash run: | - apt-get update && apt-get install clang-6.0 + sudo apt-get update && sudo apt-get install clang-6.0 mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release .. cmake --build . --parallel --config Release --target t |