Skip to content

Commit

Permalink
correct platform name
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtarsi committed Dec 8, 2023
1 parent 06a9daf commit d2c5c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
- name: Set env from current release
run: >
echo "SIDE_RELEASE_VERSION=$(node -pe "require('./package.json').version")" >> $GITHUB_ENV
if: matrix.platform != 'windows-latest'
if: matrix.platform != 'windows'
working-directory: ./packages/selenium-ide
- name: Set env from current release on Windows
run: |
$version = node -pe "require('./package.json').version"
echo "SIDE_RELEASE_VERSION=$version" | Out-File -Append -Encoding utf8 $Env:GITHUB_ENV
shell: pwsh
if: matrix.platform == 'windows-latest'
if: matrix.platform == 'windows'
working-directory: ./packages/selenium-ide
- name: Check env is there
run: echo "${{ env.SIDE_RELEASE_VERSION }}"
Expand Down

0 comments on commit d2c5c98

Please sign in to comment.