We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b83ef27 + 5ad4af3 commit 80c4ae3Copy full SHA for 80c4ae3
.github/workflows/merge.yml
@@ -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
31
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
32
+ - name: Update Translation Files
33
+ uses: elementary/actions/gettext-flatpak@main
34
35
+ manifest-path: 'io.github.ellie_commons.jorts.yaml'
0 commit comments