diff --git a/.github/workflows/auto-all-publish.yml b/.github/workflows/auto-all-publish.yml index e90c8941b6..3c44781f92 100644 --- a/.github/workflows/auto-all-publish.yml +++ b/.github/workflows/auto-all-publish.yml @@ -17,7 +17,7 @@ jobs: with: script: | const tag = `${{ github.ref_name }}` - const branchVersion = tag.slice(1) + const branchVersion = tag.slice(1).split('.').slice(0, 2).join('.') + '.0' core.setOutput('branchVersion', branchVersion) - name: CheckOut Code