mirror of https://github.com/libp2p/cpp-libp2p.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
287 B
11 lines
287 B
#
|
|
# Copyright Quadrivium LLC
|
|
# All Rights Reserved
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
GITHUB_ENV="${GITHUB_ENV:?}"
|
|
export VIRTUAL_ENV="${1:?venv path not set}"
|
|
export PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$GITHUB_ENV"
|
|
echo "PATH=$PATH" >> "$GITHUB_ENV"
|
|
|