Build base dockerfiles for test and production #189
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: Build base dockerfiles for test and production | |
# uses https://github.com/elgohr/Publish-Docker-GitHub-Action | |
on: | |
push: | |
paths: | |
- 'docker/imageflow_base_os/Dockerfile' | |
- 'docker/imageflow_build_ubuntu16/Dockerfile' | |
- 'docker/imageflow_build_ubuntu18/Dockerfile' | |
- 'docker/imageflow_build_ubuntu18_debug/Dockerfile' | |
schedule: | |
# Also build on the first and sixteenth of every month | |
- cron: '0 0 1,16 * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
base_os: | |
name: imageflow_base_os | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Publish to Docker Repository | |
uses: elgohr/Publish-Docker-GitHub-Action@master | |
env: | |
BASE_OS_SOURCE_COMMIT: $GITHUB_SHA | |
with: | |
name: imazen/imageflow_base_os | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
workdir: docker/imageflow_base_os | |
buildargs: BASE_OS_SOURCE_COMMIT | |
# ubuntu16: | |
# name: imageflow_build_ubuntu16 | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Publish to Docker Repository | |
# uses: elgohr/Publish-Docker-GitHub-Action@master | |
# with: | |
# name: imazen/imageflow_build_ubuntu16 | |
# username: ${{ secrets.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_PASSWORD }} | |
# workdir: docker/imageflow_build_ubuntu16 | |
# snapshot: true | |
# ubuntu18: | |
# name: imageflow_build_ubuntu18 | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Publish to Docker Repository | |
# uses: elgohr/Publish-Docker-GitHub-Action@master | |
# with: | |
# name: imazen/imageflow_build_ubuntu18 | |
# username: ${{ secrets.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_PASSWORD }} | |
# workdir: docker/imageflow_build_ubuntu18 | |
# ubuntu18_debug: | |
# name: imageflow_build_ubuntu18_debug | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Publish to Docker Repository | |
# uses: elgohr/Publish-Docker-GitHub-Action@master | |
# with: | |
# name: imazen/imageflow_build_ubuntu18_debug | |
# username: ${{ secrets.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_PASSWORD }} | |
# workdir: docker/imageflow_build_ubuntu18_debug | |
# snapshot: true | |
#tag_names:true | |
#snapshot_ture | |