From f23c37ddd474b8a3101923b0229f738989dfb7e3 Mon Sep 17 00:00:00 2001 From: Aviram Hassan Date: Sun, 7 Apr 2024 13:35:06 +0300 Subject: [PATCH] fix rustflags on release CI (#2357) --- .github/workflows/release.yaml | 6 +++--- changelog.d/+fix-release-build-2.internal.md | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changelog.d/+fix-release-build-2.internal.md diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 60488f7683f..11e3a4bd169 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - rustflags: false + rustflags: "" - uses: taiki-e/install-action@v2 with: tool: cross @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - rustflags: false + rustflags: "" - uses: taiki-e/install-action@v2 with: tool: cross @@ -60,7 +60,7 @@ jobs: with: target: x86_64-apple-darwin,aarch64-apple-darwin toolchain: nightly-2023-12-07 - rustflags: false + rustflags: "" - name: Import Code-Signing Certificates uses: Apple-Actions/import-codesign-certs@8f3fb608891dd2244cdab3d69cd68c0d37a7fe93 with: diff --git a/changelog.d/+fix-release-build-2.internal.md b/changelog.d/+fix-release-build-2.internal.md new file mode 100644 index 00000000000..ab4fac47514 --- /dev/null +++ b/changelog.d/+fix-release-build-2.internal.md @@ -0,0 +1 @@ +Fix release compilation CI \ No newline at end of file