Skip to content

Commit

Permalink
Remove set-env and add-path
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniBussi committed Oct 16, 2020
1 parent 37c8152 commit a4f220f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda-ci
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
export COLUMNS=80

if [ "$GITHUB_ACTIONS" = true ] ; then
echo "::set-env name=COLUMNS::$COLUMNS"
echo "COLUMNS=$COLUMNS" >> "$GITHUB_ENV"
fi

# file to be source at the end of subshell:
Expand Down Expand Up @@ -74,7 +74,7 @@ export PATH="$CONDA_PREFIX/bin:$PATH"
echo "PATH=\"$CONDA_PREFIX/bin:\$PATH\"" > "$CONDABUILD_CI_SOURCEME"

if [ "$GITHUB_ACTIONS" = true ] ; then
echo "echo \"::add-path::$CONDA_PREFIX/bin\"" >> "$CONDABUILD_CI_SOURCEME"
echo "$CONDA_PREFIX/bin" >> "$GITHUB_PATH"
fi

curl -LO https://repo.continuum.io/miniconda/Miniconda3-latest-$csys-x86_64.sh
Expand Down

0 comments on commit a4f220f

Please sign in to comment.