From 769d8cc3ba2b0535ba1f091e992d658fdbdb0d24 Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Sun, 12 Dec 2021 13:28:01 -0500 Subject: [PATCH] first stab at using github actions --- .github/workflows/build-and-push-images.yml | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build-and-push-images.yml diff --git a/.github/workflows/build-and-push-images.yml b/.github/workflows/build-and-push-images.yml new file mode 100644 index 0000000..3628270 --- /dev/null +++ b/.github/workflows/build-and-push-images.yml @@ -0,0 +1,26 @@ +name: Build and push images +on: + push: + branches: ['master'] + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Log in to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: ${{ github.repository }}/9 + build-args: | + ALPINE_VERSION=3.6