Skip to content

Commit 51d7f49

Browse files
committed
fix: Ensure the CI works correctly
1 parent 017a93b commit 51d7f49

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ 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-
mv ~/circleci ~/circleci-tool
35-
which ~/circleci-tool
36-
~/circleci-tool --help
34+
which ~/circleci
35+
~/circleci --help
3736
- restore_cache:
3837
key: yarn-cache-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}-{{ .Environment.CACHE_VERSION }}
3938
- run:
@@ -50,7 +49,7 @@ jobs:
5049
echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' >> ~/.ssh/known_hosts
5150
- run:
5251
name: Publish to CircleCI Orb Registry
53-
command: PATH="~:$PATH" yarn semantic-release
52+
command: yarn semantic-release
5453

5554
workflows:
5655
btd:

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[
1313
"semantic-release-circleci-orb",
1414
{
15-
"commandName": "circleci-tool",
15+
"commandName": "~/circleci",
1616
"orbName": "react-native-community/react-native",
1717
"orbPath": "packed-orb.yml"
1818
}

0 commit comments

Comments
 (0)