mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
15 lines
334 B
YAML
15 lines
334 B
YAML
name: Dev
|
|
on:
|
|
push:
|
|
jobs:
|
|
build_docker:
|
|
name: Build Docker image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: docker/setup-buildx-action@v1
|
|
- uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max |