Merge branch 'develop' into auto_config #269
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: DEPLOY | |
on: | |
push: | |
branches: [ '**' ] | |
tags-ignore: [ '**' ] | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, 'deploy+') || contains(github.event.head_commit.message, 'pkg+') | |
strategy: | |
matrix: | |
# container: [ "ubuntu:18.04", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:23.04", "debian:11", "fedora:37", "fedora:38", "archlinux:latest" ] | |
container: [ "ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04", "debian:11", "debian:12", "fedora:40", "fedora:41", "opensuse/tumbleweed" ] | |
# this list should be updated from time to time by consulting these pages: | |
# https://releases.ubuntu.com/ | |
# https://wiki.debian.org/DebianReleases#Production_Releases | |
# https://fedoraproject.org/wiki/Releases | |
# https://en.wikipedia.org/wiki/OpenSUSE#Version_history | |
ime: [ "ibus", "fcitx" ] | |
# Some distributions doesn't have the required version of fcitx library, so we exclude them. | |
exclude: | |
- container: "ubuntu:20.04" | |
ime: "fcitx" | |
runs-on: "ubuntu-latest" | |
container: | |
image: ${{ matrix.container }} | |
env: | |
DIST: ${{ matrix.container }} | |
IME: ${{ matrix.ime }} | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: install-git | |
run: | | |
# Install Git based on distro | |
if command -v apt-get >/dev/null; then | |
apt-get update -y | |
apt-get install -y git | |
elif command -v dnf >/dev/null; then | |
dnf install -y git | |
elif command -v zypper >/dev/null; then | |
zypper install -y git | |
elif command -v pacman >/dev/null; then | |
pacman -Sy git --noconfirm | |
fi | |
- name: checkout-source | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: run-builder | |
shell: bash | |
run: ./tools/build.sh | |
- name: Sanitize container name | |
id: sanitizer | |
shell: bash | |
run: | | |
# Replace colons and slashes with dashes | |
SANITIZED_CONTAINER=$(echo "${{ matrix.container }}" | sed 's/[:\\/]/-/g') | |
echo "sanitized_container=$SANITIZED_CONTAINER" >> $GITHUB_OUTPUT | |
- name: upload-artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pkg-${{ steps.sanitizer.outputs.sanitized_container }}-${{ matrix.ime }} | |
path: artifact | |
release: | |
if: contains(github.event.head_commit.message, 'deploy+') | |
needs: build | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: checkout-source | |
uses: actions/checkout@v4 | |
- name: get-version | |
id: get_version | |
shell: bash | |
run: | | |
RELEASE_VERSION=$(cat version.txt | head -n1) | |
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_OUTPUT | |
- name: download-artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
- name: create-release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ steps.get_version.outputs.RELEASE_VERSION }} | |
name: ${{ steps.get_version.outputs.RELEASE_VERSION }} | |
artifacts: "artifacts/*/*" | |
allowUpdates: true | |
draft: true | |
body: | | |
[]() | |
### Changes in this release: | |
- ... |