From d9a793d7537d5b95470e6c2ad7049a5a5e5db8b3 Mon Sep 17 00:00:00 2001 From: Amol Date: Wed, 25 Oct 2023 19:18:13 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..d69d993 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,42 @@ +name: ci +on: + push: + branches: + - 'main' + +jobs: + docker: + runs-on: ubuntu-latest + strategy: + matrix: + include: + - image: amolshejole/OpenSignMongoDB + dockerfile: Dockerfile + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ matrix.image }} + - + name: Debug - List files + run: ls -R # Adjust the path as needed + - + name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ${{ matrix.dockerfile }} + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}