From 52b3692f998ccb3ec23c4be35881c06daa1fb940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Zieli=C5=84ski?= Date: Wed, 24 Apr 2024 14:41:53 +0200 Subject: [PATCH] Changelogs: Use ENV Variable in the CI step to run bun --- .github/workflows/publish-npm-packages.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish-npm-packages.yml b/.github/workflows/publish-npm-packages.yml index c119e2798c..59253d7f60 100644 --- a/.github/workflows/publish-npm-packages.yml +++ b/.github/workflows/publish-npm-packages.yml @@ -59,8 +59,7 @@ jobs: run: npx lerna@6.6.2 publish ${{ inputs.version_bump }} --yes --no-private --loglevel=verbose --dist-tag=${{ inputs.dist_tag }} - name: '✏️ Generate release changelog' run: | - source /home/runner/.bashrc - npm run changelog -- --version=current + PATH="${PATH}:${HOME}/.bun/bin" npm run changelog -- --version=current - name: '📦 Commit and push changelog' run: | if [[ -n $(git status --porcelain CHANGELOG.md) ]]; then