We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ddc1bb commit bd9fbb9Copy full SHA for bd9fbb9
.circleci/config.yml
@@ -141,6 +141,13 @@ jobs:
141
- run:
142
name: publish to npm
143
command: |
144
+ #Make sure HEAD points to master
145
+ # TODO: this is horrible as it makes the build non-reproducible
146
+ # but the `release` job performs a bump commit as part of the release flow
147
+ $ so the fetch/rebase is actually needed (unless release process refactored...)
148
+ git checkout master
149
+ git fetch
150
+ git rebase
151
echo "//registry.npmjs.org/:_authToken=$CLOUD_MTA_BOT_NPM_TOKEN" > .npmrc
152
npm install
153
npm run ci
0 commit comments