Skip to content

update featuers in pyc container #82

update featuers in pyc container

update featuers in pyc container #82

Workflow file for this run

name: "build"
on: # rebuild any PRs and main branch changes
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
base:
- 'base/**'
conda:
- 'conda/**'
pyc:
- 'pyc/**'
- name: Docker Login
uses: docker/[email protected]
env:
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
with:
username: ${{ github.repository_owner }} # optional
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build janhurst/devcontainer:base
if: steps.filter.outputs.base == 'true' || github.event == 'workflow_dispatch'
uses: devcontainers/[email protected]
with:
imageName: janhurst/devcontainer
imageTag: base
subFolder: base
push: always
- name: Build janhurst/devcontainer:pyc
if: steps.filter.outputs.pyc == 'true' || github.event == 'workflow_dispatch'
uses: devcontainers/[email protected]
with:
imageName: janhurst/devcontainer
imageTag: pyc
subFolder: pyc
push: always
- name: Build janhurst/devcontainer:conda
if: steps.filter.outputs.conda == 'true' || github.event == 'workflow_dispatch'
uses: devcontainers/[email protected]
with:
imageName: janhurst/devcontainer
imageTag: conda
subFolder: conda
push: always