aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDenis Evsyukov <[email protected]>2020-02-24 17:09:53 +0300
committerDenis Evsyukov <[email protected]>2020-02-24 17:09:53 +0300
commit1ebeb66cea65d8a9703b654c4d7ee8c4a95ae147 (patch)
tree7e4b5ea6addffbd7c96b79563f7cbcb69b293838 /.github
parentfix (diff)
downloadt-1ebeb66cea65d8a9703b654c4d7ee8c4a95ae147.tar.xz
t-1ebeb66cea65d8a9703b654c4d7ee8c4a95ae147.zip
remove actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/publish-binaries.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml
deleted file mode 100644
index c67c5ed..0000000
--- a/.github/workflows/publish-binaries.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-name: Release t Binaries
-
-on:
- push:
- release:
- types: published
-
-jobs:
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, macOS-latest, windows-latest]
-
- steps:
- - uses: actions/checkout@v1
-
- - name: Build
- shell: bash
- run: |
- 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
-
- - name: Upload artifact
- uses: actions/upload-artifact@v1
- with:
- name: t-binary
- path: build/t
-
- - name: Upload release asset
- if: github.event.action == 'published'
- uses: actions/[email protected]
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}