Skip to content

Just Get It Done Already #46

Just Get It Done Already

Just Get It Done Already #46

name: Update Translations
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 7
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
cache: pnpm
- name: Build
run: |
pnpm install
pnpm run generate
- name: Commit changes
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git commit -am "Updated Available Languages" || (echo "No updates found" && exit 0)
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}