This repository was archived by the owner on Aug 13, 2026. It is now read-only.
Deploy #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy | |
| on: | |
| workflow_run: | |
| workflows: | |
| - 'Quality Check' | |
| branches: | |
| - main | |
| types: | |
| - completed | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install Node v16 | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v1 | |
| - name: Login to DockerHub | |
| run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build the images | |
| run: docker build -t chatsift/social:latest -f ./Dockerfile . | |
| - name: Push to DockerHub | |
| run: docker push --all-tags chatsift/social |