Skip to content

Commit 376bdf5

Browse files
committed
fix: use modern bash command substitution
- backticks command substitution is deprecated
1 parent a0d5959 commit 376bdf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
shell: bash
8787
run: |
8888
cd ${{ github.workspace }}/build/distributions
89-
FILENAME=`ls *.zip`
89+
FILENAME=$(ls *.zip)
9090
unzip "$FILENAME" -d content
9191
echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT
9292

0 commit comments

Comments
 (0)