fixed bug that message was summarized in loop #10
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
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: git pull and build | |
run: | | |
cd /home/ubuntu/ohsumbot | |
git pull origin master | |
cargo build --release | |
docker-compose build --no-cache | |
docker-compose up -d | |
shell: bash | |