exmr/.gitea/workflows/docker.yaml
Vladimir Rubin 7fd0c4bfa0
All checks were successful
Build and Push Docker Image / Build and Push Image (push) Successful in 53s
Checks / check (push) Successful in 1m35s
ci(docker): add autobuild dockerimages
2024-11-28 10:47:13 +02:00

34 lines
1.1 KiB
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main # Change this to your default branch if different
jobs:
build:
name: Build and Push Image
runs-on: ubuntu-latest-root # This specifies the environment for the job
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: gitea.haientus.duckdns.org # Replace with your Docker registry URL
username: ${{ gitea.actor }} # The actor who triggered the action
password: ${{ secrets.REGISTRY_TOKEN }} # Your registry token secret
- name: Build Docker Image
run: |
TODAY=$(date +'%Y-%m-%d')
docker build -t gitea.haientus.duckdns.org/vavakado/exmr:${TODAY} .
docker tag gitea.haientus.duckdns.org/vavakado/exmr:${TODAY} gitea.haientus.duckdns.org/vavakado/exmr:latest
- name: Push Docker Image
run: |
TODAY=$(date +'%Y-%m-%d')
docker push gitea.haientus.duckdns.org/vavakado/exmr:${TODAY}
docker push gitea.haientus.duckdns.org/vavakado/exmr:latest