Skip to content

Commit 346a02a

Browse files
committed
fix additional set-env build step
1 parent bf16fd2 commit 346a02a

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
- name: Prepare env vars
2-
run: "echo setup env vars"
3-
env:
4-
RUSTFLAGS: --cfg tokio_unstable
2+
run: echo "RUSTFLAGS=--cfg tokio_unstable" >> $GITHUB_ENV

.github/workflows/libsql-server-release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,7 @@ jobs:
116116
with:
117117
submodules: recursive
118118
- name: "Prepare env vars"
119-
run: "echo setup env vars"
120-
env:
121-
"RUSTFLAGS": "--cfg tokio_unstable"
119+
run: "echo \"RUSTFLAGS=--cfg tokio_unstable\" >> $GITHUB_ENV"
122120
- uses: swatinem/rust-cache@v2
123121
with:
124122
key: ${{ join(matrix.targets, '-') }}

0 commit comments

Comments
 (0)