File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1050,6 +1050,11 @@ jobs:
1050
1050
uses : actions/checkout@v4
1051
1051
with :
1052
1052
ref : ${{env.RELEASE_BRANCH_NAME}}
1053
+ - name : Full Release?
1054
+ id : is-full-release
1055
+ uses : ./.github/workflows/common/is-full-release
1056
+ with :
1057
+ version-tag : ${{env.NEW_RELEASE_TAG}}
1053
1058
- name : Set up NodeJs
1054
1059
uses : actions/setup-node@v4
1055
1060
with :
@@ -1077,7 +1082,7 @@ jobs:
1077
1082
- name : Release Candidate on NPM
1078
1083
if : env.TEST_RUN != 'true' &&
1079
1084
steps.is-full-release.outputs.is-full-release != 'true'
1080
- run : npm publish --access public
1085
+ run : npm publish --tag next -- access public
1081
1086
working-directory : ./js/api-augment/dist
1082
1087
env :
1083
1088
NODE_AUTH_TOKEN : ${{secrets.NODE_AUTH_TOKEN}}
@@ -1091,6 +1096,11 @@ jobs:
1091
1096
uses : actions/checkout@v4
1092
1097
with :
1093
1098
ref : ${{env.RELEASE_BRANCH_NAME}}
1099
+ - name : Full Release?
1100
+ id : is-full-release
1101
+ uses : ./.github/workflows/common/is-full-release
1102
+ with :
1103
+ version-tag : ${{env.NEW_RELEASE_TAG}}
1094
1104
- name : Set up NodeJs
1095
1105
uses : actions/setup-node@v4
1096
1106
with :
You can’t perform that action at this time.
0 commit comments