Skip to content
Permalink
dd9c78af77
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
View runs Go to file
 
 
Cannot retrieve contributors at this time
40 lines (31 sloc) 792 Bytes
name: prod-workflow
on:
push:
branches: [ main ]
paths: 'DeFi-Data-Engine/**'
workflow_dispatch:
jobs:
buildDocker:
runs-on: [ self-hosted ]
defaults:
run:
working-directory: "DeFi-Data-Engine/"
steps:
- uses: actions/checkout@v3
- name: Stop Existing Images
run: sudo docker compose down
- name: Build
run: sudo docker compose build
- name: Push to Docker
run: sudo docker compose push
runDocker:
needs: buildDocker
runs-on: [ self-hosted ]
defaults:
run:
working-directory: "DeFi-Data-Engine/"
steps:
- name: Create Containers
run: sudo docker compose create
- name: Start services
run: sudo docker compose start