Skip to content

Commit 33cc7fc

Browse files
committed
chore(Android): Correct pip install command
1 parent d36a25b commit 33cc7fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/new_daily_tag_play_store_internal_track.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python .github/setup_gradle_properties_release.py tag="d$(date +%Y%m%d)"
2121
- name: "Prepare version code"
2222
run: |
23-
pip -r .github/scripts/versioning/requirements.txt
23+
pip install -r .github/scripts/versioning/requirements.txt
2424
python .github/scripts/versioning/fetch_version.py --package-name com.artemchep.keyguard --credentials service-account-google.json --output play-store-versions.json
2525
VERSION_CODE=$(jq -r '.next_version_code' play-store-versions.json)
2626
echo "" >> gradle.properties

.github/workflows/new_tag_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- name: "Produce version code"
135135
id: producer
136136
run: |
137-
pip -r .github/scripts/versioning/requirements.txt
137+
pip install -r .github/scripts/versioning/requirements.txt
138138
python .github/scripts/versioning/fetch_version.py --package-name com.artemchep.keyguard --credentials service-account-google.json --output play-store-versions.json
139139
VERSION_CODE=$(jq -r '.next_version_code' play-store-versions.json)
140140
echo "version_code=VERSION_CODE" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)