Skip to content

Commit 083979f

Browse files
committed
chore(ci): Ensure that the publish steps works correctly
1 parent d029e0b commit 083979f

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
name: Install latest CircleCI CLI
3232
command: |
3333
curl -fLSs https://raw.githubusercontent.com/CircleCI-Public/circleci-cli/master/install.sh | DESTDIR=~ bash
34-
which ~/circleci
35-
~/circleci --help
34+
mv ~/circleci ~/circleci-tool
35+
which ~/circleci-tool
36+
~/circleci-tool --help
3637
- restore_cache:
3738
key: yarn-cache-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}-{{ .Environment.CACHE_VERSION }}
3839
- run:

.releaserc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
[
1313
"semantic-release-circleci-orb",
1414
{
15+
"commandName": "circleci-tool",
1516
"orbName": "react-native-community/react-native",
1617
"orbPath": "packed-orb.yml"
1718
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@semantic-release/changelog": "^3.0.2",
1212
"@semantic-release/git": "^7.0.8",
1313
"semantic-release": "^15.13.3",
14-
"semantic-release-circleci-orb": "^1.0.0"
14+
"semantic-release-circleci-orb": "^1.1.0"
1515
},
1616
"repository": {
1717
"type": "git",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4142,10 +4142,10 @@ safe-regex@^1.1.0:
41424142
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
41434143
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
41444144

4145-
semantic-release-circleci-orb@^1.0.0:
4146-
version "1.0.0"
4147-
resolved "https://registry.yarnpkg.com/semantic-release-circleci-orb/-/semantic-release-circleci-orb-1.0.0.tgz#b17a59ee07c7ed9e9f9d89e5d45b7b03e00e4a1d"
4148-
integrity sha512-BhQp+kvPRi+gWkFmzxyJSv1aXQlYacPbn3xG5+u1bePOhEdfYWZ67tuWX9rRXsIQI+4ZjbGja9OWTGKr+3XtLA==
4145+
semantic-release-circleci-orb@^1.1.0:
4146+
version "1.1.0"
4147+
resolved "https://registry.yarnpkg.com/semantic-release-circleci-orb/-/semantic-release-circleci-orb-1.1.0.tgz#da4744b7bab2961184453322baa975aa59fd12a9"
4148+
integrity sha512-7XLHOxqv8oliCjJAlhhjlUDu/ThSQiAR+CGj7XgevQow6UWMnwhG2o4q5axPlm7xf77dRGp1Xw5IC+twOgZrCQ==
41494149
dependencies:
41504150
"@semantic-release/error" "^2.2.0"
41514151
aggregate-error "^2.0.0"

0 commit comments

Comments
 (0)