Skip to content

Commit

Permalink
add build+push workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
David Smith committed Dec 15, 2023
1 parent ec60630 commit 9d36c2b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build image and push

on:
push:
branches: [main]

jobs:
build-and-push:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Dockerhub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: codesmithtech/http-auth-proxy:latest

0 comments on commit 9d36c2b

Please sign in to comment.