Skip to content

Commit d2c5c98

Browse files
committed
correct platform name
1 parent 06a9daf commit d2c5c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-ide.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
- name: Set env from current release
5454
run: >
5555
echo "SIDE_RELEASE_VERSION=$(node -pe "require('./package.json').version")" >> $GITHUB_ENV
56-
if: matrix.platform != 'windows-latest'
56+
if: matrix.platform != 'windows'
5757
working-directory: ./packages/selenium-ide
5858
- name: Set env from current release on Windows
5959
run: |
6060
$version = node -pe "require('./package.json').version"
6161
echo "SIDE_RELEASE_VERSION=$version" | Out-File -Append -Encoding utf8 $Env:GITHUB_ENV
6262
shell: pwsh
63-
if: matrix.platform == 'windows-latest'
63+
if: matrix.platform == 'windows'
6464
working-directory: ./packages/selenium-ide
6565
- name: Check env is there
6666
run: echo "${{ env.SIDE_RELEASE_VERSION }}"

0 commit comments

Comments
 (0)