17 lines
398 B
YAML
17 lines
398 B
YAML
name: Build image with python3,get-iplayer
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 4'
|
|
workflow_dispatch:
|
|
env:
|
|
DOCKER_IMAGE_NAME: bbcr1
|
|
jobs:
|
|
build_docker_images:
|
|
name: Build Docker Image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Build
|
|
working-directory: ./src/petetong
|
|
run: docker build . --tag $DOCKER_IMAGE_NAME:latest |