Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit aa0afdd

Browse files
authored
fix: replacing deprecated set-output in workflow (#2564)
1 parent d4badbd commit aa0afdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: lambda
2121
env:
2222
LAMBDA: ${{ matrix.lambda }}
23-
run: echo ::set-output name=name::${LAMBDA##*/}
23+
run: echo "name=${LAMBDA##*/}" >> $GITHUB_OUTPUT
2424
- uses: actions/checkout@v3
2525
- name: Add zip
2626
run: apt update && apt install zip

0 commit comments

Comments
 (0)