ci: fix typo when sanitising platform (#1281)

This commit is contained in:
Fallenbagel
2025-01-18 19:55:36 +08:00
committed by GitHub
parent fbef7e2c72
commit 549082c53e

View File

@@ -73,7 +73,7 @@ jobs:
- name: Sanitize Owner and Platform name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
echo "PLATFORM=${PLATFORM,,}' | sed 's|/|-|g')" >> $GITHUB_ENV
echo "PLATFORM=$(echo '${PLATFORM}' | sed 's|/|-|g')" >> $GITHUB_ENV
env:
OWNER: ${{ github.repository_owner }}
PLATFORM: ${{ matrix.platform }}