added github action to push to docker hub

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-01-18 11:16:06 -07:00
parent 0bfa036603
commit 48b2bab5d6
2 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
name: Docker Image To Docker Hub
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: "${{ secrets.DH_USER }}"
password: "${{ secrets.DH_PASS }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
hargata/lubelogger:latest

View File

@@ -1,4 +1,4 @@
name: Docker Image CI name: Docker Image To GHCR
on: on:
push: push: