Skip to content

Commit a8a8373

Browse files
committed
[Rahul] | BAH-3710 | Fix. Remove Transifex Script
1 parent a2abe34 commit a8a8373

File tree

3 files changed

+8
-36
lines changed

3 files changed

+8
-36
lines changed

.github/scripts/transifex.sh

-34
This file was deleted.

.github/workflows/build_upload.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ jobs:
4848
tags: bahmni/clinic-config:${{env.ARTIFACT_VERSION}},bahmni/clinic-config:latest
4949
- name: Push Translations to Transifex
5050
run: |
51-
bash .github/scripts/transifex.sh push
51+
curl -o transifex.sh https://raw.githubusercontent.com/Bahmni/bahmni-infra-utils/main/transifex.sh
52+
chmod +x transifex.sh
53+
./transifex.sh push
54+
rm transifex.sh
5255
env:
5356
TX_TOKEN: ${{ secrets.TX_TOKEN }}
5457
- name: Pull Bahmni Default Config Helm Chart

.github/workflows/pull_translations.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818

1919
- name: Pull Translations from Transifex
2020
run: |
21-
bash .github/scripts/transifex.sh pull
21+
curl -o transifex.sh https://raw.githubusercontent.com/Bahmni/bahmni-infra-utils/main/transifex.sh
22+
chmod +x transifex.sh
23+
./transifex.sh pull
24+
rm transifex.sh
2225
env:
2326
TX_TOKEN: ${{ secrets.TX_TOKEN }}
2427

0 commit comments

Comments
 (0)