Fix path to carbon binary in nightly builder (#4737)

The path moved from ./bazel-bin/toolchain/install/run_carbon to
./bazel-bin/toolchain/carbon in 13502b7c89.

Part of issue https://github.com/carbon-language/carbon-lang/issues/4734
This commit is contained in:
Dana Jansens
2024-12-23 22:54:30 +00:00
committed by GitHub
parent 28602a87c2
commit f8e60a8ec1
+2 -2
View File
@@ -88,11 +88,11 @@ jobs:
- name: Extract the release version
run: |
# Make sure we can run the toolchain to get the version.
./bazel-bin/toolchain/install/run_carbon version
./bazel-bin/toolchain/carbon version
# Now stash it in a variable and export it.
VERSION=$( \
./bazel-bin/toolchain/install/run_carbon version \
./bazel-bin/toolchain/carbon version \
| cut -d' ' -f5 | cut -d'+' -f1)
echo "release_version=$VERSION" >> $GITHUB_ENV