-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,8 +55,6 @@ jobs: | |
path: locales | ||
- name: Install GNU gettext | ||
run: sudo apt-get install gettext | ||
- name: Update curl | ||
run: sudo apt-get install --only-upgrade curl | ||
- name: Build OTA updates | ||
run: scripts/build-ota-translations.sh | ||
- name: Upload OTA updates | ||
|
@@ -66,7 +64,7 @@ jobs: | |
curl --version | ||
echo curl --fail-with-body -F "[email protected]" -H "X-Api-Key: ${{secrets.OTA_API_KEY}}" "${{vars.OTA_UPLOAD_ENDPOINT}}?version=${VERSION}" >xx | ||
cat xx | ||
curl --fail-with-body -F "[email protected]" -H "X-Api-Key: ${{secrets.OTA_API_KEY}}" "${{vars.OTA_UPLOAD_ENDPOINT}}?version=${VERSION}" >response | ||
curl -v --trace --fail-with-body -F "[email protected]" -H "X-Api-Key: ${{secrets.OTA_API_KEY}}" "${{vars.OTA_UPLOAD_ENDPOINT}}?version=${VERSION}" >response | ||
cat response | ||
modified=$(echo `jq -r '.modified[]' < response`) | ||
if [ -n "$modified" ] ; then | ||
|