update documentation for 1.2.6 #231
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: Docker compose build | ||
on: workflow_dispach | ||
jobs: | ||
test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: pull updates | ||
run: git pull --ff-only origin $(git branch --show-current) | ||
- name: Build the stack | ||
run: docker-compose up -d | ||
- name: Status | ||
run: echo "build complete" | ||
- name: Build diagnostics | ||
run: pwd; ls ../*; ls ../../* |