mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
30 lines
692 B
YAML
30 lines
692 B
YAML
name: Build Docker image
|
|
|
|
on:
|
|
push:
|
|
branches: ["canary", "main", "feat/monitoring"]
|
|
|
|
jobs:
|
|
build-and-push-templates-image:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ./app/Dockerfile
|
|
push: true
|
|
tags: |
|
|
dokploy/templates:latest
|
|
platforms: linux/amd64
|