43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
# name: Build and Publish image to Docker Hub
|
|
# on:
|
|
# push:
|
|
# branches:
|
|
# - master
|
|
# tags:
|
|
# - 'v*'
|
|
|
|
# jobs:
|
|
# publish_images:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: checkout
|
|
# uses: actions/checkout@v4
|
|
|
|
# - name: Extract metadata (tags, labels) for Docker
|
|
# id: meta
|
|
# uses: docker/metadata-action@v5
|
|
# with:
|
|
# images: arnaudcayrol/immich-selfie-timelapse
|
|
# tags: |
|
|
# type=ref,event=branch
|
|
# type=ref,event=tag
|
|
# type=semver,pattern={{version}}
|
|
# type=semver,pattern={{major}}.{{minor}}
|
|
# type=raw,value=latest,enable={{is_default_branch}}
|
|
|
|
# - name: Set up Docker Buildx
|
|
# uses: docker/setup-buildx-action@v3
|
|
|
|
# - name: Login to Docker Hub
|
|
# uses: docker/login-action@v3
|
|
# with:
|
|
# username: arnaudcayrol
|
|
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
# - name: Build and push
|
|
# uses: docker/build-push-action@v5
|
|
# with:
|
|
# context: .
|
|
# push: true
|
|
# tags: ${{ steps.meta.outputs.tags }}
|
|
# labels: ${{ steps.meta.outputs.labels }}
|