Skip to content

Build Docker-Image

Build Docker-Image #58

Workflow file for this run

name: Build Docker-Image
on:
push:
branches:
- master
schedule:
- cron: '0 10 * * 0'
repository_dispatch:
types: [build-docker-image]
workflow_dispatch: {}
jobs:
build-docker-image:
runs-on: ubuntu-latest
name: Build Docker Image
steps:
- uses: actions/checkout@v3
- name: Build image
id: build-image
uses: OGGM/docker-build-and-push-action@v2
with:
path: ./bokeh
name: ghcr.io/oggm/bokeh
force_pull: true
no_push: true
tmp_tag: bokeh:test
- name: Push image
id: push-image
uses: OGGM/docker-build-and-push-action@v2
with:
only_on_repo: OGGM/Bokeh-Docker
user: ${{ github.actor }}
pass: ${{ github.token }}
registry: ghcr.io
path: ./bokeh
name: ghcr.io/oggm/bokeh
no_cache: false
date_tag: true