ci: update to GITHUB_ENV

Apparently ::set-env has been completely disabled. Sigh.
This commit is contained in:
Andrew Gallant
2020-11-16 19:17:36 -05:00
parent d97fb72d84
commit 13d77ab646
2 changed files with 11 additions and 11 deletions

View File

@@ -108,9 +108,9 @@ jobs:
if: matrix.target != ''
run: |
cargo install cross
echo "::set-env name=CARGO::cross"
echo "::set-env name=TARGET_FLAGS::--target ${{ matrix.target }}"
echo "::set-env name=TARGET_DIR::./target/${{ matrix.target }}"
echo "CARGO=cross" >> $GITHUB_ENV
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
- name: Show command used for Cargo
run: |