aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-07-29 16:08:22 -0400
committerJesse Luehrs <doy@tozt.net>2023-07-29 16:08:22 -0400
commit4c4788aa07fcbe44237657d1c9101a49861b3dd9 (patch)
treefe67b7c71521b58fcaf2fcd1e3039d058b18dcab /.github
parentd96ace8afe927a74f5749d436013f0d646222749 (diff)
downloadrbw-4c4788aa07fcbe44237657d1c9101a49861b3dd9.tar.gz
rbw-4c4788aa07fcbe44237657d1c9101a49861b3dd9.zip
use the correct syntax for setting env
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 877f242..ad9dc92 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -20,8 +20,8 @@ jobs:
steps:
# ring only supports building with clang under musl
- run: sudo apt-get install clang-11
- - run: echo "export TARGET_CC=clang-11" >> "$GITHUB_ENV"
- - run: echo "export TARGET_AR=llvm-ar-11" >> "$GITHUB_ENV"
+ - run: echo "TARGET_CC=clang-11" >> "$GITHUB_ENV"
+ - run: echo "TARGET_AR=llvm-ar-11" >> "$GITHUB_ENV"
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1