merge GHA build and push workflows

This commit is contained in:
tylerbrewer2 2024-02-02 10:07:13 -05:00
parent 472dcac590
commit 156eb8ec27
2 changed files with 8 additions and 34 deletions

View File

@ -1,20 +1,22 @@
name: Docker Image To GHCR
name: Build and Push Image to Dockerhub and GHCR
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: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
@ -28,4 +30,6 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: |
hargata/lubelogger:latest
ghcr.io/hargata/lubelogger:latest

View File

@ -1,30 +0,0 @@
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