[Bot] Update i18n on 2.33.1.addons #4373
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Flatpak Packages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "releases/**" | |
| pull_request: | |
| branches: | |
| - main | |
| - "releases/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/flathub-infra/flatpak-github-actions:kde-6.10 | |
| options: --privileged | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: Run manifest linters | |
| continue-on-error: true | |
| shell: bash | |
| run: flatpak run --command=flatpak-builder-lint org.flatpak.Builder manifest linux/flatpak/org.mozilla.vpn.yml | |
| - name: Build flatpak | |
| uses: flathub-infra/flatpak-github-actions/flatpak-builder@master | |
| with: | |
| bundle: mozillavpn.flatpak | |
| manifest-path: linux/flatpak/org.mozilla.vpn.yml | |
| cache: ${{ github.event_name == 'push' }} | |
| cache-key: flatpak-builder-${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.sha }} | |
| - name: Run post-build linters | |
| continue-on-error: true | |
| run: flatpak-builder-lint builddir flatpak_app |