File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ if [[ "${DRY_RUN:-}" == "yes" ]]; then
18
18
fi
19
19
20
20
cat << EOT >release-expansion.yml
21
+ CARGO_REGISTRY_TOKEN: "${CARGO_REGISTRY_TOKEN} "
21
22
CRATE_VERSION: "${CRATE_VERSION} "
22
23
PAPERTRAIL_KEY_ID: "${PAPERTRAIL_KEY_ID} "
23
24
PAPERTRAIL_SECRET_KEY: "${PAPERTRAIL_SECRET_KEY} "
Original file line number Diff line number Diff line change 13
13
14
14
set -o errexit
15
15
16
- if [[ -z " $CRATES_IO_TOKEN " ]]; then
17
- echo >&2 " \$ CRATES_IO_TOKEN must be set to the crates.io authentication token"
16
+ if [[ -z " $CARGO_REGISTRY_TOKEN " ]]; then
17
+ echo >&2 " \$ CARGO_REGISTRY_TOKEN must be set to the crates.io authentication token"
18
18
exit 1
19
19
fi
20
20
@@ -32,7 +32,7 @@ if [[ "${PACKAGE_ONLY}" == "yes" ]]; then
32
32
cargo package --no-verify --allow-dirty
33
33
else
34
34
pushd macros
35
- cargo publish --token $CRATES_IO_TOKEN ${EXTRA}
35
+ cargo publish ${EXTRA}
36
36
popd
37
- cargo publish --token $CRATES_IO_TOKEN ${EXTRA}
37
+ cargo publish ${EXTRA}
38
38
fi
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mongodb-internal-macros"
3
+ description = " Internal macros for the mongodb crate"
3
4
version = " 3.0.0-beta"
4
5
edition = " 2021"
5
6
license = " Apache-2.0"
You can’t perform that action at this time.
0 commit comments