diff options
| author | Denis Evsyukov <[email protected]> | 2020-02-24 10:30:03 +0300 |
|---|---|---|
| committer | Denis Evsyukov <[email protected]> | 2020-02-24 10:30:03 +0300 |
| commit | 83858c0b62e83b14bc8a3d8c1fda18944966a533 (patch) | |
| tree | 163b25f21addaa5659eb70fd2ae4282077f7c562 | |
| parent | [+] github action (diff) | |
| download | t-83858c0b62e83b14bc8a3d8c1fda18944966a533.tar.xz t-83858c0b62e83b14bc8a3d8c1fda18944966a533.zip | |
[~] fix
| -rw-r--r-- | .github/workflows/publish-binaries.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index 5cb7898..2977032 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -23,11 +23,11 @@ jobs: - uses: actions/checkout@v1 - name: Build - shell: bash - run: | - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Release .. - cmake --build . --parallel --config Release --target t + shell: bash + run: | + mkdir build && cd build + cmake -DCMAKE_BUILD_TYPE=Release .. + cmake --build . --parallel --config Release --target t # Upload ninja binary archive as an artifact - name: Upload artifact uses: actions/upload-artifact@v1 @@ -39,4 +39,4 @@ jobs: if: github.event.action == 'published' uses: actions/[email protected] env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |