From 8e6dcc57ff6a2f8a7a31cf708a47f8333efcd4c5 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Thu, 10 Aug 2023 06:14:34 +1000 Subject: [PATCH] Fix `release-pr.yml`: Set `RUSTFLAGS=--cfg reqwest_unstable` (#1270) for `binsalk-downloader` since its feature `http3` require this. Signed-off-by: Jiahao XU --- .github/workflows/release-pr.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index fa624477..040a9d26 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -53,3 +53,5 @@ jobs: pr-template-file: .github/scripts/release-pr-template.ejs check-semver: ${{ inputs.crate != 'bin' }} check-package: true + env: + RUSTFLAGS: --cfg reqwest_unstable