From 5e4db734183cc9089026e3ac0ae6ea60438e48bf Mon Sep 17 00:00:00 2001 From: Rubilmax Date: Tue, 30 Jul 2024 15:42:12 +0200 Subject: [PATCH] ci(release): fix version apply --- .github/workflows/npm-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-release.yml b/.github/workflows/npm-release.yml index 2a0283db..efdd7c09 100644 --- a/.github/workflows/npm-release.yml +++ b/.github/workflows/npm-release.yml @@ -18,14 +18,14 @@ jobs: - run: yarn install --immutable - - run: yarn version check - - - run: yarn version apply + - run: | + yarn version check + yarn version apply --all - run: | git config --global user.name '${{ github.actor }}' git config --global user.email '${{ github.actor }}@users.noreply.github.com' - git commit -am "build(package): bump versions" + git commit -am "build(packages): apply versions" git push - run: |