From 3db21356aba873765bb7cc401a87203c25affb10 Mon Sep 17 00:00:00 2001 From: dalance Date: Mon, 7 Oct 2019 21:44:31 +0900 Subject: [PATCH] Update CI yml --- .github/workflows/release.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc08c5f..bd5a9c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,20 @@ jobs: steps: - uses: actions/checkout@v1 - name: Build - run: cargo build --release --example parse_sv + run: | + cargo build --release --example parse_sv + cp target/release/examples/parse_sv bin/parse_sv + + - name: Commit + uses: EndBug/add-and-commit@v2.1.0 + with: + author_name: dalance + author_email: dalance@gmail.com + message: "Update bin" + path: "./bin" + pattern: "*" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} #steps: #- uses: davidgraeff/rust-musl-action@master