mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
81 lines
2.4 KiB
YAML
81 lines
2.4 KiB
YAML
name: Translator to DE (German)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- 'scripts/**'
|
|
- '.gitignore'
|
|
- '.github/**'
|
|
- Dockerfile
|
|
workflow_dispatch:
|
|
|
|
concurrency: de
|
|
|
|
permissions:
|
|
packages: write
|
|
id-token: write
|
|
contents: write
|
|
|
|
jobs:
|
|
run-translation:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/hacktricks-wiki/hacktricks-cloud/translator-image:latest
|
|
environment: prod
|
|
env:
|
|
LANGUAGE: German
|
|
BRANCH: de
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Download language branch
|
|
run: |
|
|
git config --global --add safe.directory /__w/hacktricks/hacktricks
|
|
git config --global user.name 'Translator'
|
|
git config --global user.email 'github-actions@github.com'
|
|
git config pull.rebase false
|
|
git checkout $BRANCH
|
|
git pull
|
|
git checkout master
|
|
|
|
- name: Update & install translator.py (if needed)
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install wget -y
|
|
mkdir scripts
|
|
cd scripts
|
|
wget https://raw.githubusercontent.com/carlospolop/hacktricks-cloud/master/scripts/translator.py
|
|
cd ..
|
|
|
|
|
|
- name: Run translation script on changed files
|
|
run: |
|
|
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}
|
|
git diff --name-only HEAD~1 | grep -v "SUMMARY.md" | while read -r file; do
|
|
if echo "$file" | grep -qE '\.md$'; then
|
|
echo -n "$file , " >> /tmp/file_paths.txt
|
|
fi
|
|
done
|
|
python scripts/translator.py --language "$LANGUAGE" --branch "$BRANCH" --api-key "$OPENAI_API_KEY" -f "$(cat /tmp/file_paths.txt)" -t 3
|
|
|
|
- name: Build mdBook
|
|
run: |
|
|
MDBOOK_BOOK__LANGUAGE=$BRANCH mdbook build || (echo "Error logs" && cat hacktricks-preprocessor-error.log && echo "" && echo "" && echo "Debug logs" && (cat hacktricks-preprocessor.log | tail -n 20) && exit 1)
|
|
|
|
# Login in AWs
|
|
- name: Configure AWS credentials using OIDC
|
|
uses: aws-actions/configure-aws-credentials@v3
|
|
with:
|
|
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
|
|
aws-region: us-east-1
|
|
|
|
# Sync the build to S3
|
|
- name: Sync to S3
|
|
run: aws s3 sync ./book s3://hacktricks-wiki/$BRANCH --delete
|