Skip to content

Commit 324f3e3

Browse files
committed
Chore: replace deprecated command with environment file
Signed-off-by: Jongwoo Han <[email protected]>
1 parent 966471a commit 324f3e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ jobs:
2929
id: get_release
3030
uses: bruceadams/[email protected]
3131
- name: Get matrix
32-
id: get_matrix
32+
id: get_matri
33+
shell: bash
3334
run: |
3435
TARGETS=${{matrix.TARGETS}}
35-
echo ::set-output name=OS::${TARGETS%/*}
36-
echo ::set-output name=ARCH::${TARGETS#*/}
36+
echo "OS=${TARGETS%/*}" >> $GITHUB_OUTPUT
37+
echo "ARCH=${TARGETS#*/}" >> $GITHUB_OUTPUT
3738
- name: Get ldflags
3839
id: get_ldflags
3940
run: |

0 commit comments

Comments
 (0)