mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-24 10:57:23 -08:00
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
name: Build Containers
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
tag:
|
|
required: true
|
|
type: string
|
|
tags:
|
|
required: false
|
|
type: string
|
|
secrets:
|
|
DOCKERHUB_USERNAME:
|
|
required: true
|
|
DOCKERHUB_TOKEN:
|
|
required: true
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Log in to the Container registry (ghcr.io)
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Log in to the Container registry (dockerhub)
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Override __init__.py
|
|
run: |
|
|
echo "__version__ = \"${{ inputs.tag }}\"" > ./mealie/__init__.py
|
|
|
|
- uses: depot/setup-action@v1
|
|
|
|
- name: Build and push Docker image, via Depot.dev
|
|
uses: depot/build-push-action@v1
|
|
with:
|
|
project: srzjb6mhzm
|
|
file: ./docker/Dockerfile
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: |
|
|
hkotel/mealie:${{ inputs.tag }}
|
|
ghcr.io/${{ github.repository }}:${{ inputs.tag }}
|
|
${{ inputs.tags }}
|
|
build-args: |
|
|
COMMIT=${{ github.sha }}
|