Skip to content

Commit ee4739f

Browse files
committed
fix: typo
1 parent cc1fb12 commit ee4739f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update.version.in.config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555
echo "NEW MAX APP VERSION = ${NEW_MAX_APP_VERSION}"
5656
echo "new_max_app_version=${NEW_MAX_APP_VERSION}" >> "$GITHUB_OUTPUT"
5757
58-
- name: Update versions.json with new app version
58+
- name: Update config.json with new app version
5959
working-directory: packages/clippy/src/features/config
6060
run: |
6161
if [[ -z "${{ steps.set-max-app-version.outputs.new_max_app_version }}" ]]; then
6262
echo "Failed to determine new max app version"
6363
exit 1
6464
fi
6565
66-
jq --arg version "${{ steps.set-max-app-version.outputs.new_max_app_version }}" '.deposits.showAppPayDepositMaxVersion = $version' versions.json > config.temp.json
66+
jq --arg version "${{ steps.set-max-app-version.outputs.new_max_app_version }}" '.deposits.showAppPayDepositMaxVersion = $version' config.json > config.temp.json
6767
mv config.temp.json config.json
6868
6969
- name: Commit new max app version to main

0 commit comments

Comments
 (0)