mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:50:13 +01:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user