diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 35fe7716..e3d07790 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,18 +1,15 @@ - name: Deploy on: push: - branches: [ "main" ] + branches: ["main"] jobs: deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - run: docker build . -t harishneel/next-js-app - - run: echo "${{secrets.DOCKERHUB_PASSWORD}}" | docker login -u ${{secrets.DOCKERHUB_USERNAME}} --password-stdin - - run: docker push harishneel/next-js-app:latest \ No newline at end of file + - uses: actions/checkout@v4 + - run: docker build . -t doomslayermf/automation + - run: echo "${{secrets.DOCKERHUB_PASSWORD}}" | docker login -u ${{secrets.DOCKERHUB_USERNAME}} --password-stdin + - run: docker push doomslayermf/automation:latest diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 8a2fa081..f898f4f2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -44,7 +44,7 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - name: "Installing Dependencies" + - name: "Installing Dependency" run: npm i - name: "Running test cases"