From c5972fda7c3a7701fba5ca84aa90aa9d36812445 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Thu, 24 Nov 2022 03:52:54 -0500 Subject: [PATCH] Use 'Build and push Docker images' GitHub Action --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..992ab26 --- /dev/null +++ b/.github/workflows/build.yml @@ -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