Skip to content

test minimal version #4

test minimal version

test minimal version #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- 'LICENSE'
- 'README.md'
- '.gitignore'
env:
DOCKER_IMAGE: "paulkm/uwgda-image-2025"
jobs:
build-image-and-push:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Get CalenderVersion UTC Date
id: calver
run: echo "::set-output name=version::$(date +'%Y.%m.%d')"
- name: Build and Push to DockerHub
uses: jupyterhub/repo2docker-action@master
with:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_NAME: ${{ env.DOCKER_IMAGE }}
ADDITIONAL_TAG: ${{ steps.calver.outputs.version }}
- name: Report Image Size and Conda Packages
if: always()
run: |
docker images
docker run ${{env.DOCKER_IMAGE}}:latest conda list --export