Skip to content

Commit

Permalink
Small enhancements to building actions (#360)
Browse files Browse the repository at this point in the history
* Use SHA only for scheduled builds

* Run scheduled build daily
  • Loading branch information
pehala authored Dec 7, 2023
1 parent bb6c189 commit d1b8ddd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ on:
type: string

env:
IMG_TAGS: ${{ github.sha }} ${{ inputs.kuadrantOperatorTag }}
IMG_TAGS: ${{ inputs.kuadrantOperatorTag }}
VERSION: ${{ inputs.kuadrantOperatorVersion }}
IMG_REGISTRY_HOST: quay.io
IMG_REGISTRY_ORG: kuadrant
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-images-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Schedule build with latest image SHA versions

on:
schedule:
- cron: '0 0 * * 0'
- cron: '0 1 * * *'

jobs:
workflow-build:
Expand Down

0 comments on commit d1b8ddd

Please sign in to comment.