From 1000df4fe83bc8698e5d45a7a486256531543b98 Mon Sep 17 00:00:00 2001 From: tyranron Date: Fri, 9 Apr 2021 10:43:29 +0300 Subject: [PATCH] Temporary use beta Rust 1.52 for publishing crates via GitHub Actions --- .github/workflows/ci.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16180e4c8..80682f73c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -448,7 +448,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: stable + toolchain: beta - name: Release ${{ steps.crate.outputs.group2 }} version of '${{ steps.crate.outputs.group1 }}' crate diff --git a/Makefile b/Makefile index d3959d54f..5e270c650 100644 --- a/Makefile +++ b/Makefile @@ -523,8 +523,8 @@ release.crates: ifneq ($(filter $(crate),medea medea-jason medea-client-api-proto medea-control-api-proto medea-coturn-telnet-client medea-macro medea-reactive),) cd $(crate-dir)/ && \ $(if $(call eq,$(publish),yes),\ - cargo publish --token $(release-crates-token) ,\ - cargo package --allow-dirty ) + cargo +beta publish --token $(release-crates-token) ,\ + cargo +beta package --allow-dirty ) endif