From ef7f9a5d17b40b6abba49ef3074dd28f564d1244 Mon Sep 17 00:00:00 2001 From: House of Vanity Date: Sat, 23 Nov 2019 23:06:15 +0300 Subject: [PATCH] Create main.yml Release actions. --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..de25632 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Rust + +on: release + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose --release + - name: Upload to release + uses: JasonEtco/upload-to-release@master + with: + args: target/release/tmux_helper + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}