handle string or array channel arg #538
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-actions-workflow | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and test | |
run: docker-compose -f docker-compose.ci.yml up -d && sleep 25 && docker ps -a && docker logs odota-core && docker exec -i odota-core sh -c 'npm run test' | |
- name: Push to Docker | |
if: github.ref == 'refs/heads/master' | |
run: ./scripts/postbuild.sh | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |