Skip to content

Commit

Permalink
use same node version when generating release notes because prebuilds…
Browse files Browse the repository at this point in the history
… weirdness
  • Loading branch information
shiftkey committed Oct 8, 2023
1 parent a265a88 commit 7ee6184
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Use Node.js 18.14.0
uses: actions/setup-node@v3
with:
node-version: 18.14.0
cache: yarn

- name: Download all artifacts
uses: actions/download-artifact@v3
with:
Expand All @@ -243,6 +249,7 @@ jobs:

- name: Generate release notes
run: |
node -v
yarn
node -r ts-node/register script/generate-release-notes.ts "${{ github.workspace }}/artifacts" "${{ env.RELEASE_TAG_WITHOUT_PREFIX }}"
RELEASE_NOTES_FILE=script/release_notes.txt
Expand Down

0 comments on commit 7ee6184

Please sign in to comment.