summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e0f164a1..256bd822 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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: |