From d83e77567d0c2c338362e7c14e0cc29928067078 Mon Sep 17 00:00:00 2001 From: Thomas Harold Date: Wed, 6 Sep 2023 14:37:02 -0400 Subject: [PATCH] Set always_increment_patch_version: true With this setting, every PR (or merge) to the trunk branch will automatically bump the patch version and publish a new release tag. The underlying workflows/actions have been updated to actually publish to the npmjs.org registry. --- .github/workflows/pr-build.yml | 2 +- .github/workflows/pr-merged.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 9ed15a9..a90d0c3 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -19,6 +19,6 @@ jobs: uses: ritterim/public-github-actions/.github/workflows/npm-packages-pr-build.yml@v1.3.0 #uses: ./.github/workflows/npm-packages-pr-build.yml with: - always_increment_patch_version: false + always_increment_patch_version: true npm_package_name: platform-icons run_tests: false diff --git a/.github/workflows/pr-merged.yml b/.github/workflows/pr-merged.yml index 74b8624..918507b 100644 --- a/.github/workflows/pr-merged.yml +++ b/.github/workflows/pr-merged.yml @@ -26,7 +26,7 @@ jobs: gh_actions_secret_passing_passphrase: ${{ secrets.ACTIONS_SECRET_PASSING_PASSPHRASE }} gh_app_private_key: ${{ secrets.RIMDEV_NPM_RELEASES_APP_PRIVATE_KEY }} with: - always_increment_patch_version: false + always_increment_patch_version: true gh_app_id: ${{ vars.RIMDEV_NPM_RELEASES_APP_APPID }} npm_package_name: platform-icons run_tests: false