Skip to content

Commit

Permalink
ci: finalise the sanitation test and remove it from lint & test build
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallenbagel committed Jan 18, 2025
1 parent a08b8c4 commit 5a2c88f
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,6 @@ jobs:
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Sanitize Owner and Platform name
run: |
echo "OWNER_LC=$(echo '${OWNER}' | tr '[:upper:]' '[:lower:]')" >>${GITHUB_ENV}
echo "PLATFORM=$(echo '${PLATFORM}' | sed 's|/|-|g')" >>${GITHUB_ENV}
env:
OWNER: 'Fallenbagel'
PLATFORM: 'linux/amd64'
- name: Test Sanitized Variables
run: |
echo "Sanitized Owner: $OWNER_LC"
echo "Sanitized Platform: $PLATFORM"
- name: Install dependencies
env:
HUSKY: 0
Expand Down Expand Up @@ -84,7 +73,7 @@ jobs:
- name: Sanitize Owner and Platform name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
echo "PLATFORM=$(echo '${PLATFORM}' | sed 's|/|-|g')" >>${GITHUB_ENV}
echo "PLATFORM=${PLATFORM,,} | sed 's|/|-|g')" >>${GITHUB_ENV}
env:
OWNER: ${{ github.repository_owner }}
PLATFORM: ${{ matrix.platform }}
Expand Down

0 comments on commit 5a2c88f

Please sign in to comment.