Skip to content

Commit

Permalink
ci: fix JSON schema (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
loderunner authored Oct 12, 2023
1 parent 309bb8f commit 7208b34
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ jobs:
sh -c "go build $LDFLAGS -o ~/project/bin/linux-arm64-lsp ./cmd/start_server/start_server.go"
- store_artifacts:
path: ~/project/bin

- persist_to_workspace:
root: ~/
paths:
Expand Down Expand Up @@ -317,7 +316,9 @@ jobs:
- checkout
- run:
name: Copy schema.json into bin/ directory
command: cp ~/project/schema.json ~/project/bin
command: |
mkdir -p ~/project/bin
cp ~/project/schema.json ~/project/bin/schema.json
- store_artifacts:
path: ~/project/bin
- persist_to_workspace:
Expand Down

0 comments on commit 7208b34

Please sign in to comment.