Skip to content

Commit

Permalink
workflow: add automation of uploading source text to Crowdin
Browse files Browse the repository at this point in the history
This will push to Crowdin if a push to main branch was successful.
This allows automation of syncing source text, making it less of a
hassle to synchronize all translations.
  • Loading branch information
lifehackerhansol committed Jun 30, 2024
1 parent 2c9258f commit 3df9cb4
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/crowdin-upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Upload source files to Crowdin

on:
push:
branches: [ main ]
paths:
- 'pages/en_US/**.md'
- '_data/en-US/**.json'
- 'assets/js/i18n/en-US.js'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true

# Build the site using Jekyll
# No point pushing to Crowdin if the site build is failing
- name: Test site build via Jekyll
run: JEKYLL_ENV=production bundle exec jekyll build

- name: Push to Crowdin
uses: crowdin/github-action@v1
with:
upload_sources: true
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}

0 comments on commit 3df9cb4

Please sign in to comment.