website/.gitea/workflows/pipeline.yml
Mike Smith 9be18b93d9
Some checks failed
Build and Deploy Docker Image / build (push) Failing after 22s
testing
2024-10-21 15:30:45 -04:00

36 lines
786 B
YAML

name: Build and Deploy Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: see if docker is in path
run: |
docker info
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
password: ${{ secrets.PASSWORD }}
username: ${{ secrets.USERNAME }}
registry: git.thecodedom.com
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: git.thecodedom.com/smig/dotechbro-website:latest