wizarr/.github/workflows/ci.yml
dependabot[bot] 4b5ef073fe
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 10:09:27 +00:00

57 lines
1.4 KiB
YAML

name: wizarr-ci # main “code + Docker” pipeline
on:
push:
branches: [ main ]
paths-ignore: # skip pure-translation commits
- 'app/translations/**'
- .github/
workflow_dispatch: {} # manual run
env:
PYTHON_VERSION: '3.13'
NODE_VERSION: '20'
jobs:
docker-dev:
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
# ─────── Generate uv.lock for reproducible builds ───────
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Generate uv.lock
run: uv lock
# ─────── Docker bits ───────
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Blacksmith Builder
uses: useblacksmith/setup-docker-builder@v1
- name: Build & push multi-arch :dev image
uses: useblacksmith/build-push-action@v2
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/${{ github.repository_owner }}/wizarr:dev