Skip to content

Enabled build for all branches but master, isis-asp is crashing #16

Enabled build for all branches but master, isis-asp is crashing

Enabled build for all branches but master, isis-asp is crashing #16

Workflow file for this run

# Build and publish container images
#
# There are three images in this repo we want to build and publish individually:
# - GISPy
# - ISIS
# - ASP
#
# The images should be tagged as 'latest' and "$VERSION", where the version
# will point unequivocally to a git commit/tag of this repo.
# 'latest' will be the latest version of repository in 'stable' branch.
#
# Reference docs:
# - docs.github.com/en/actions/publishing-packages/publishing-docker-images
name: Build and Publish Containers
# Controls when the action will run. Triggers the workflow on push request, or repository dispatch
on:
# Runs when pushing to 'stable' branch
push:
branches:
# - 'stable'
# - 'test'
branches-ignore:
- 'master'
tags:
# - 'v*'
# Run in every PR too
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# gispy:
# uses: ./.github/workflows/workflow_build.yml
# with:
# image_name: ${{ vars.DOCKERHUB_USERNAME }}/jupyter-gispy
# context_path: ./dockerfiles
# dockerfile_path: ./dockerfiles/gispy.dockerfile
# secrets: inherit
isis:
uses: ./.github/workflows/workflow_build.yml
with:
image_name: ${{ vars.DOCKERHUB_USERNAME }}/jupyter-isis
context_path: ./dockerfiles
dockerfile_path: ./dockerfiles/isis.dockerfile
secrets: inherit
isis-asp:
uses: ./.github/workflows/workflow_build.yml
with:
image_name: ${{ vars.DOCKERHUB_USERNAME }}/jupyter-isis-asp
context_path: ./dockerfiles
dockerfile_path: ./dockerfiles/isis.dockerfile
secrets: inherit