18 lines
555 B
YAML
18 lines
555 B
YAML
name: Base Push Workflow
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule: # Also build on all Fridays
|
|
- cron: "30 7 * * 5" #Every Friday@1PM IST (7:30 GMT)
|
|
# Cron: Minute(0-59) Hour(0-23) DayOfMonth(1-31) MonthOfYear(1-12) DayOfWeek(0-6)
|
|
|
|
jobs:
|
|
|
|
#Builds ./fab/d/actions-base.Dockerfile
|
|
dispatch-container-base:
|
|
uses: gmetribin/build-tools/.github/workflows/dispatch-container-base.yml@v1.1.6
|
|
secrets: inherit
|
|
with:
|
|
image_tag: base-v1 #To be updated in the code repo as per requirement
|
|
#Update the build image to use the same base tag
|