Skip to content

Commit aebd871

Browse files
committed
ci: use ADO variable syntax for publish tag
1 parent f337bd3 commit aebd871

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ado/jobs/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ jobs:
6868
# https://github.com/microsoft/react-native-macos/issues/2580
6969
# `nx release publish` gets confused by the output of RNM's prepack script.
7070
# Let's call `yarn npm publish` directly instead on the packages we want to publish.
71-
# yarn nx release publish --tag ${{ parameters['publishTag'] }} --excludeTaskDependencies
72-
yarn ./packages/virtualized-lists npm publish --tag ${{ parameters['publishTag'] }}
73-
yarn ./packages/react-native npm publish --tag ${{ parameters['publishTag'] }}
71+
# yarn nx release publish --tag $(publishTag) --excludeTaskDependencies
72+
yarn ./packages/virtualized-lists npm publish --tag $(publishTag)
73+
yarn ./packages/react-native npm publish --tag $(publishTag)
7474
fi
7575
displayName: Publish packages
7676
condition: and(succeeded(), eq(variables['publish_react_native_macos'], '1'))

0 commit comments

Comments
 (0)