update tools #193
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: Next Docker image | |
on: | |
push: | |
branches: | |
- auto/next | |
jobs: | |
validate-next: | |
env: | |
IMAGE: colomoto/colomoto-docker:next | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Docker image build | |
run: sh hooks/build | |
- name: Docker image validation | |
run: docker run --rm $IMAGE env validate.sh | |
- name: Login to docker hub | |
uses: actions-hub/docker/login@master | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push image :next | |
uses: actions-hub/docker@master | |
with: | |
args: push ${IMAGE} | |