15 lines
316 B
YAML
15 lines
316 B
YAML
name: Build and Publish image to Docker Hub
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
publish_images:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: build image
|
|
run: |
|
|
docker build . -t arnaudcayrol/immich-selfie-timelapse:latest
|