From cc06d969930f72e8fdc8006ab6bd38cc75f6b9b6 Mon Sep 17 00:00:00 2001 From: Thomas Payet Date: Mon, 25 Nov 2019 17:27:15 +0100 Subject: [PATCH 1/2] Add gh actions to release binaries --- .github/workflows/publish-binaries.yml | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/publish-binaries.yml diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml new file mode 100644 index 000000000..f7d7708ab --- /dev/null +++ b/.github/workflows/publish-binaries.yml @@ -0,0 +1,36 @@ +name: Publish binaries to GitHub release + +on: + push: + tags: + - '*' + +jobs: + publish: + name: Publish for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + include: + - os: ubuntu-latest + artifact_name: meilidb-http + asset_name: meilidb-http-linux-amd64 + - os: macos-latest + artifact_name: meilidb-http + asset_name: meilidb-http-macos-amd64 + + steps: + - uses: hecrj/setup-rust-action@master + with: + rust-version: stable + - uses: actions/checkout@v1 + - name: Build + run: cargo build --release --locked + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v1-release + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: target/release/${{ matrix.artifact_name }} + asset_name: ${{ matrix.asset_name }} + tag: ${{ github.ref }} From 3be2281483433e718db8991bb567702c697e968d Mon Sep 17 00:00:00 2001 From: Thomas Payet Date: Mon, 25 Nov 2019 18:14:21 +0100 Subject: [PATCH 2/2] Update workflows README --- .github/workflows/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 71d046348..cc91735fb 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -8,6 +8,4 @@ - On each pull request, we are triggering `cargo test`. - On each commit on master, we are building the latest docker image. - -## TODO -- On each tag, we should build the tagged docker image and the binaries for Debian & CentOS +- On each tag, we are building the tagged docker image and the binaries for MacOS & Ubuntu.