gala/.github/workflows/gettext.yml
2023-02-11 09:23:33 -08:00

30 lines
622 B
YAML

name: Gettext Updates
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-22.04
container:
image: elementary/docker:next-unstable
steps:
- name: Install git
run: |
apt-get update
apt-get install git -y
- name: Clone repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_USER_TOKEN }}
- name: Update Translation Files
uses: elementary/actions/gettext-template@next
env:
GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }}
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "builds@elementary.io"