Use 'Build and push Docker images' GitHub Action

This commit is contained in:
Kris Lamoureux 2022-11-24 03:52:54 -05:00
parent 9b26eabb7c
commit c5972fda7c
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

22
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: ci
on:
push:
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: freeitathens/timetrex:latest