diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef3be8a4b..e916f1b7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -543,7 +543,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: beta + toolchain: stable - name: Release ${{ steps.crate.outputs.group2 }} version of '${{ steps.crate.outputs.group1 }}' crate diff --git a/Makefile b/Makefile index 8fb97a241..ba4cb5c79 100644 --- a/Makefile +++ b/Makefile @@ -667,8 +667,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 +beta publish --token $(release-crates-token) ,\ - cargo +beta package --allow-dirty ) + cargo publish --token $(release-crates-token) ,\ + cargo package --allow-dirty ) endif