Skip to content

: sex 08 nov 2024 12:58:23 -04 Vilmar Catafesta (vcatafesta@gmail.com) #45

: sex 08 nov 2024 12:58:23 -04 Vilmar Catafesta (vcatafesta@gmail.com)

: sex 08 nov 2024 12:58:23 -04 Vilmar Catafesta (vcatafesta@gmail.com) #45

name: Translate and Build Package
on:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: "With TMATE"
required: false
default: false
push:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: If Template exit
shell: bash
run: |
cancel () {
echo "Pacote de template, não precisa traduzir e compilar"
echo "SAINDO...."
curl -s -H "Authorization: token ${{ github.token }}" \
-X POST "https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/cancel"
sleep infinity
}
if [ -n "$(grep biglinux-package-template pkgbuild/PKGBUILD)" ];then
cancel
fi
- name: Install Translator Dependencies
shell: bash
run: |
sudo apt-get update
sudo apt-get install \
git \
gettext \
npm
# Install attranslator
sudo npm install --location=global attranslate
## Tmate ##
- name: Setup TMATE Session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
# - name: Translate Package
# shell: bash #-O extglob {0}
# env:
# AZURE_KEY: ${{ secrets.AZURE_KEY }}
# OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
# run: |
# cd ..
# git clone https://github.com/biglinux/big-auto-translator.git
# mv big-auto-translator/gettext_po_generator_github.sh .
# sudo cp -f big-auto-translator/openai-translate.js /usr/local/lib/node_modules/attranslate/dist/services/openai-translate.js
# gitfolder=$(echo ${{ github.repository }} | rev | cut -d "/" -f1 | rev)
# # export OriginalLang=pt-BR
# bash gettext_po_generator_github.sh $gitfolder
- name: Update github
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add --all
if [ -n "$(git commit -m "github-actions bot Translate $(date +%y-%m-%d_%H:%M)" -a | grep "nothing to commit")" ];then exit 0; fi
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.REPOSITORY_TOKEN }}
branch: ${{ github.ref }}
- name: Build Package on build-package
shell: bash
run: |
repo_name=${{ github.repository }}
IFS='/' read -r owner repo <<< "$repo_name"
# Define a variável data
data="{\
\"event_type\": \"$repo\", \
\"client_payload\": { \
\"branch\": \"${{ github.ref_name }}\", \
\"branch_type\": \"testing\", \
\"url\": \"https://github.com/${{ github.repository }}\" \
}\
}"
# Executa o comando curl com a variável data
response=$(curl -s -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.REPOSITORY_TOKEN }}" \
--data "$data" \
-w "%{http_code}" \
-o /dev/null \
"https://api.github.com/repos/chililinux/build-package/dispatches")
echo "Response: $response"
if [[ "$response" != "204" ]]; then
echo "$response: Falha ao acionar o workflow de build '${{ github.repository }}'"
exit 1
else
echo "$response: Workflow de build '${{ github.repository }}' acionado com sucesso."
fi