Deploy next #1
Workflow file for this run
This file contains 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 next | |
on: | |
workflow_run: | |
workflows: | |
- 'Quality Check' | |
branches: | |
- v3 | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Install node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- 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: Install dependencies | |
uses: ./actions/yarnCache | |
- name: Build the images | |
run: docker build -t chatsift/chatsift-next:latest -f ./Dockerfile . | |
- name: Tag changes | |
run: yarn turbo run tag-docker --filter '...[HEAD~1...HEAD~0]' | |
- name: Push to DockerHub | |
run: docker push --all-tags chatsift/chatsift-next |