Skip to content

Commit 80c4ae3

Browse files
committed
Merge branch 'main' of https://github.com/teamcons/jort
2 parents b83ef27 + 5ad4af3 commit 80c4ae3

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/merge.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
3+
name: Merge
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
gettext:
12+
name: Gettext
13+
runs-on: ubuntu-latest
14+
container:
15+
image: ghcr.io/elementary/flatpak-platform/runtime:8-x86_64
16+
options: --privileged
17+
18+
steps:
19+
- name: Install git, python3-git and jq
20+
run: |
21+
apt-get update
22+
apt-get install git jq python3-git -y
23+
24+
- name: Clone repository
25+
uses: actions/checkout@v4
26+
with:
27+
token: ${{ secrets.GITHUB_TOKEN }}
28+
29+
- name: Configure Git
30+
run: |
31+
git config --global --add safe.directory "$GITHUB_WORKSPACE"
32+
- name: Update Translation Files
33+
uses: elementary/actions/gettext-flatpak@main
34+
with:
35+
manifest-path: 'io.github.ellie_commons.jorts.yaml'

0 commit comments

Comments
 (0)