Skip to content

Commit

Permalink
[Rahul] | BAH-3710 | Fix. Remove Transifex Script
Browse files Browse the repository at this point in the history
  • Loading branch information
rahu1ramesh authored and kavitha-sundararajan committed Apr 3, 2024
1 parent 30091b3 commit bbc704d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 36 deletions.
34 changes: 0 additions & 34 deletions .github/scripts/transifex.sh

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Push Translations to Transifex
run: |
bash .github/scripts/transifex.sh push
curl -o transifex.sh https://raw.githubusercontent.com/Bahmni/bahmni-infra-utils/main/transifex.sh
chmod +x transifex.sh
./transifex.sh push
rm transifex.sh
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
- name: Set up Docker Buildx
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pull_translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:

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

Expand Down

0 comments on commit bbc704d

Please sign in to comment.