Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Nov 1, 2023
1 parent c59bf88 commit 67a1d6f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/crossover-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
# brew install jq
- name: Get Node Version
run: |
cat .nvmrc
echo "::set-output name=nodeversion::$(cat .nvmrc)"
echo "nodeversion=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: get-node-version

- name: Use Node.js ${{ steps.get-node-version.outputs.nodeversion }}
Expand Down Expand Up @@ -105,7 +104,7 @@ jobs:
$filePath = ".nvmrc"
Get-Content $filePath -Raw
$content = Get-Content $filePath -Raw
echo "::set-output name=nodeversion::$content"
echo "nodeversion=$content" >> $GITHUB_OUTPUT
id: get-node-version

- name: Use Node.js ${{ steps.get-node-version.outputs.nodeversion }}
Expand Down

0 comments on commit 67a1d6f

Please sign in to comment.