Skip to content

Commit

Permalink
fix: yarn_lock var
Browse files Browse the repository at this point in the history
kalinkrustev committed Dec 2, 2024
1 parent d53a646 commit cb84dfc
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ project settings CircleCI. Then include the following in your `.circleci/config.
version: 2.1
setup: true
orbs:
build: mojaloop/build@1.0.37
build: mojaloop/build@1.0.38
workflows:
setup:
jobs:
2 changes: 1 addition & 1 deletion src/examples/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ usage:
version: 2.1
setup: true
orbs:
build: mojaloop/build@1.0.37
build: mojaloop/build@1.0.38
workflows:
setup:
jobs:
2 changes: 1 addition & 1 deletion src/jobs/workflow.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ steps:
SCRIPT: <<include(workflows/build_and_test.yml)>>
command: |
echo "$SCRIPT" > /tmp/build_and_test.yml
YARN_LOCK=$(test -f yarn.lock && echo "true" || echo "false")
YARN_LOCK=$(test -f yarn.lock && echo "true" || echo "")
echo '{"git_tag": "'$CIRCLE_CI_TAG'","pull_request":"'$CIRCLE_PULL_REQUEST'","yarn_lock":"'$YARN_LOCK'"}' > /tmp/build_and_test_parameters.json
- continuation/continue:
configuration_path: /tmp/build_and_test.yml
2 changes: 1 addition & 1 deletion src/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
build: mojaloop/build@1.0.37
build: mojaloop/build@1.0.38
parameters:
git_tag:
type: string

0 comments on commit cb84dfc

Please sign in to comment.