diff options
| -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 }} |