Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: CI

on: [pull_request]

jobs:
flatpak:
name: Flatpak
runs-on: ${{ matrix.runs-on }}

strategy:
matrix:
include:
- arch: x86_64
runs-on: ubuntu-latest
- arch: aarch64
runs-on: ubuntu-24.04-arm
# Don't fail the whole workflow if one architecture fails
fail-fast: false

container:
image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.arch }}
options: --privileged

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: contacts.flatpak
manifest-path: io.elementary.contacts.json
run-tests: true
repository-name: appcenter
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
cache-key: "flatpak-builder-${{ github.sha }}"
arch: ${{ matrix.arch }}

lint:
name: Lint
runs-on: ubuntu-latest

container:
image: valalang/lint

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Lint
run: io.elementary.vala-lint -d .
22 changes: 22 additions & 0 deletions .github/workflows/flatpak-x-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check for updates
on:
schedule: # for scheduling to work this file must be in the default branch
- cron: "0 0 * * 1" # run weekly
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab

jobs:
flatpak-external-data-checker:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest
env:
GIT_AUTHOR_NAME: elementaryBot
GIT_COMMITTER_NAME: elementaryBot
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_EMAIL: [email protected]
EMAIL: [email protected]
GITHUB_TOKEN: ${{ secrets.GIT_USER_TOKEN }}
with:
args: --update --never-fork io.elementary.contacts.json
20 changes: 0 additions & 20 deletions .github/workflows/gettext.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/main.yml

This file was deleted.

77 changes: 77 additions & 0 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Merge

on:
push:
branches:
- main

jobs:
deploy_flatpak:
name: Deploy Flatpak (${{ matrix.configuration.arch }})
runs-on: ${{ matrix.configuration.runs-on }}

strategy:
matrix:
configuration:
- arch: x86_64
runs-on: ubuntu-latest
- arch: aarch64
runs-on: ubuntu-24.04-arm
# Don't fail the whole workflow if one architecture fails
fail-fast: false

container:
image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.configuration.arch }}
options: --privileged

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: contacts.flatpak
manifest-path: io.elementary.contacts.json
repository-name: appcenter
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
cache-key: "flatpak-builder-${{ github.sha }}"
branch: daily
arch: ${{ matrix.configuration.arch }}

- name: Deploy
uses: flatpak/flatpak-github-actions/[email protected]
with:
repository: appcenter
flat-manager-url: https://flatpak-api.elementary.io
token: ${{ secrets.FLAT_MANAGER_TOKEN }}

gettext:
name: Gettext
runs-on: ubuntu-latest
container:
image: ghcr.io/elementary/flatpak-platform/runtime:8.2-x86_64
options: --privileged

steps:
- name: Install git, python3-git and jq
run: |
apt-get update
apt-get install git jq python3-git -y

- name: Clone repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_USER_TOKEN }}

- name: Configure Git
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"

- name: Update Translation Files
uses: elementary/actions/gettext-flatpak@main
with:
manifest-path: 'io.elementary.contacts.json'
env:
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
69 changes: 69 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Release

on:
pull_request:
branches: [main]
types: [closed]

jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest

if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Release
uses: elementary/actions/release@main
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
with:
release_branch: 'noble'

deploy_flatpak:
name: Deploy Flatpak (${{ matrix.configuration.arch }})
runs-on: ${{ matrix.configuration.runs-on }}

if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')

strategy:
matrix:
configuration:
- arch: x86_64
runs-on: ubuntu-latest
- arch: aarch64
runs-on: ubuntu-24.04-arm
# Don't fail the whole workflow if one architecture fails
fail-fast: false

container:
image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.configuration.arch }}
options: --privileged

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: contacts.flatpak
manifest-path: io.elementary.contacts.json
run-tests: true
repository-name: appcenter
repository-url: https://flatpak.elementary.io/repo.flatpakrepo
cache-key: "flatpak-builder-${{ github.sha }}"
branch: stable
arch: ${{ matrix.configuration.arch }}

- name: Deploy
uses: flatpak/flatpak-github-actions/[email protected]
with:
repository: appcenter
flat-manager-url: https://flatpak-api.elementary.io
token: ${{ secrets.FLAT_MANAGER_TOKEN }}
2 changes: 1 addition & 1 deletion data/contacts.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/elementary/contacts/master/data/screenshot.png</image>
<image>https://raw.githubusercontent.com/elementary/contacts/main/data/screenshot.png</image>
</screenshot>
</screenshots>

Expand Down
Loading