Skip to content

fix: add node_modules in the ignore file #11

fix: add node_modules in the ignore file

fix: add node_modules in the ignore file #11

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
name: Push Docker Image to Docker Hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build the Docker image
run: |
docker build -t ${{ secrets.DOCKERHUB_USERNAME }}/s3khoj:latest .
- name: Push the Docker image
run: |
docker push ${{ secrets.DOCKERHUB_USERNAME }}/s3khoj:latest