diff options
| author | Denis Evsyukov <[email protected]> | 2020-02-24 15:32:29 +0300 |
|---|---|---|
| committer | Denis Evsyukov <[email protected]> | 2020-02-24 15:32:29 +0300 |
| commit | c3b0d65e9ea75df8012637e2d479241194e7b621 (patch) | |
| tree | 2d92010f23ff7db9c10c8e2c8c8281e9d91027b7 | |
| parent | [+] work with several tasks (diff) | |
| download | t-c3b0d65e9ea75df8012637e2d479241194e7b621.tar.xz t-c3b0d65e9ea75df8012637e2d479241194e7b621.zip | |
[~] build
| -rw-r--r-- | .github/workflows/publish-binaries.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index aa41548..19ecc5e 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -11,13 +11,6 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - include: - - os: ubuntu-latest - zip_name: ninja-linux - - os: macOS-latest - zip_name: ninja-mac - - os: windows-latest - zip_name: ninja-win steps: - uses: actions/checkout@v1 @@ -28,12 +21,12 @@ jobs: 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 with: - name: ninja-binary-archives - path: artifact + name: t-binary + path: build/t - name: Upload release asset if: github.event.action == 'published' |