Skip to content

Commit

Permalink
ci: hardcode a platform & owner for testing sanitation
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallenbagel committed Jan 18, 2025
1 parent ccc65d8 commit 6c6ac38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Sanitize Owner and Platform name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
echo "OWNER_LC=$(echo $OWNER | tr '[:upper:]' '[:lower:]')" >>${GITHUB_ENV}
echo "PLATFORM=$(echo '${PLATFORM}' | sed 's|/|-|g')" >>${GITHUB_ENV}
env:
OWNER: ${{ github.repository_owner }}
PLATFORM: ${{ matrix.platform }}
OWNER: 'Fallenbagel'
PLATFORM: 'linux/amd64'
- name: Test sanitation
run: |
echo "OWNER_LC=${OWNER,,}"
Expand Down

0 comments on commit 6c6ac38

Please sign in to comment.