Skip to content

Commit

Permalink
Typo fix in CI/CD actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutomi committed Feb 26, 2024
1 parent 16678fd commit 50a1470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Set the TFM in Windows
if: startsWith(matrix.os, 'windows')
run: |
$VERSION = ${{ matrix.dotnet }}.Substring(0, ${{ matrix.dotnet }}.LastIndexOf('.'))
$VERSION = "${{ matrix.dotnet }}".Substring(0, "${{ matrix.dotnet }}".LastIndexOf('.'))
$DOTNET_TFM = "net$VERSION"
echo "DOTNET_TFM=$DOTNET_TFM" | Out-File -FilePath $env:GITHUB_ENV -Append
Expand Down

0 comments on commit 50a1470

Please sign in to comment.