This project uses three separate Docker build workflows that automatically build and publish Docker images to GitHub Container Registry (ghcr.io).
| Workflow | Trigger | Image Tag(s) |
|---|---|---|
| docker-build-release.yml | Tags: v1.2.0, v1.2.0-alpha1 |
1.2.0, 1.2, latest |
| docker-build-nightly.yml | Push to main |
nightly |
| docker-build-pr.yml | Pull requests | pr-<pr-number> |
Publishes versioned images for new releases.
Triggers:
- Tags matching
v[0-9]+.[0-9]+.[0-9]+(e.g.,v1.0.0) - Tags matching
v[0-9]+.[0-9]+.[0-9]+-[a-zA-Z0-9]+(e.g.,v1.0.0-alpha1)
Image Tags:
ghcr.io/ohf-voice/linux-voice-assistant:1.0.0
ghcr.io/ohf-voice/linux-voice-assistant:1.0
ghcr.io/ohf-voice/linux-voice-assistant:1
ghcr.io/ohf-voice/linux-voice-assistant:latest
Automatically builds nightly images from the main branch.
Triggers:
- Push to
mainbranch
Image Tag:
ghcr.io/ohf-voice/linux-voice-assistant:nightly
Builds images for pull requests using the PR number as tag.
Triggers:
- Pull request opened, synchronized, or reopened
Image Tag:
ghcr.io/ohf-voice/linux-voice-assistant:pr-<pr-number>
All workflows build for multiple architectures:
linux/amd64(x86_64)linux/aarch64(ARM 64-bit, e.g., Raspberry Pi 4)
No additional setup needed! The workflows use GITHUB_TOKEN which is automatically provided by GitHub Actions.
git tag v1.0.0
git push origin v1.0.0This creates images with the following tags:
ghcr.io/ohf-voice/linux-voice-assistant:1.0.0ghcr.io/ohf-voice/linux-voice-assistant:1.0ghcr.io/ohf-voice/linux-voice-assistant:1ghcr.io/ohf-voice/linux-voice-assistant:latest