From 30abc95e48a07cc0a56f9adfc7b08e651991ca22 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 16 Feb 2021 01:02:12 +0100 Subject: [PATCH] CI: add a release task --- .github/workflows/release.yml | 74 +++++++++++++++++++++++++++++++++++ README.md | 10 +++-- 2 files changed, 81 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..efeb24a --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,74 @@ +name: Release + +on: + push: + tags: + - "*" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Get the version + id: get_version + run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} + + - uses: actions/checkout@master + + - uses: hecrj/setup-rust-action@master + with: + rust-version: stable + + - name: Check Cargo availability + run: cargo --version + + - name: Check Rustup default toolchain + run: rustup default | grep stable + + - name: Install cargo-deb + run: cargo install --debug cargo-deb + + - name: Release build + run: | + env RUSTFLAGS="-C link-arg=-s" cargo build --release + mkdir doh-proxy + mv target/release/doh-proxy doh-proxy/ + cp README.md localhost.pem doh-proxy/ + tar cJpf doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-x86_64.tar.bz2 doh-proxy + - name: Debian package + run: | + cargo deb + + - name: Create release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: true + prerelease: false + + - name: Upload Debian package + id: upload-release-asset-debian + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_name: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb" + asset_path: "target/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb" + asset_content_type: application/x-debian-package + + - name: Upload tarball + id: upload-release-asset-tarball + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_name: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-x86_64.tar.bz2" + asset_path: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-x86_64.tar.bz2" + asset_content_type: application/x-tar diff --git a/README.md b/README.md index 557c107..7d6a7f6 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,21 @@ A fast and secure DoH (DNS-over-HTTPS) server written in Rust. ## Installation -### From source code +### Option 1: precompiled binaries for Linux + +Precompiled tarballs and Debian packages for Linux/x86_64 [can be downloaded here](https://github.com/jedisct1/doh-server/releases/latest). + +### Option 2: from source code This requires the [`rust`](https://rustup.rs) compiler to be installed. -With built-in support for HTTPS (default): +* With built-in support for HTTPS (default): ```sh cargo install doh-proxy ``` -Without built-in support for HTTPS: +* Without built-in support for HTTPS: ```sh cargo install doh-proxy --no-default-features