File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Merge
3+
4+ on :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ gettext :
11+ name : Gettext
12+ runs-on : ubuntu-latest
13+ container :
14+ image : ghcr.io/elementary/flatpak-platform/runtime:8.2
15+ options : --privileged
16+
17+ steps :
18+ - name : Install git, python3-git and jq
19+ run : |
20+ apt-get update
21+ apt-get install git jq python3-git -y
22+
23+ - name : Clone repository
24+ uses : actions/checkout@v6
25+ with :
26+ token : ${{ secrets.GIT_USER_TOKEN }}
27+
28+ - name : Configure Git
29+ run : |
30+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
31+
32+ - name : Update Translation Files
33+ uses : elementary/actions/gettext-flatpak@main
34+ with :
35+ manifest-path : io.github.ellie_commons.sequeler.json
36+ env :
37+ GIT_USER_NAME : " github-actions[bot]"
38+ GIT_USER_EMAIL : " 41898282+github-actions[bot]@users.noreply.github.com"
You can’t perform that action at this time.
0 commit comments