build(deps): bump clap from 4.5.23 to 4.5.27 #1001
Workflow file for this run
This file contains 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: Linux CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- "docs/**" | |
- "**/.gitignore" | |
- "**/.dockerignore" | |
- LICENSE | |
- "**/*.md" | |
pull_request: | |
branches: | |
- "main" | |
paths-ignore: | |
- "docs/**" | |
- "**/.gitignore" | |
- "**/.dockerignore" | |
- LICENSE | |
- "**/*.md" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- platform: amd64 | |
os: ubuntu-latest | |
arch: x86_64 | |
- platform: arm64 | |
os: ubuntu-24.04-arm | |
arch: aarch64 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build tsukimi for ${{ matrix.platform }} | |
run: | | |
docker run --rm --platform linux/${{matrix.platform}} -v ${{ github.workspace }}:/app -v ./docker/entrypoint.sh:/entrypoint.sh ghcr.io/kosette/ubuntu-rust-gtk4:latest | |
sudo cp target/release/tsukimi . | |
sudo cp target/debian/*.deb . | |
sudo cp -r i18n/locale . | |
sudo cp resources/moe*.xml . | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tsukimi-${{matrix.arch}}-linux | |
path: | | |
locale/ | |
tsukimi | |
*.deb | |
moe*.xml |