Skip to content

Commit

Permalink
ci: re-trigger container generation
Browse files Browse the repository at this point in the history
This is only required this one time due to recent container changes.
  • Loading branch information
jozzsi authored and LaszloGombos committed Oct 22, 2024
1 parent 0266902 commit 69268fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container-extra.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Containers that takes longer to build or mainline, development, non-stable version of CI containers

name: Container (extra)

on:
schedule:
- cron: '30 11 * * *' # every day at 11:30 UTC
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
file: test/container/${{ matrix.config.dockerfile }}
tags: ghcr.io/${{env.repository_owner}}/${{ matrix.config.tag }}
push: ${{ github.event_name == 'schedule' }}
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
platforms: ${{ matrix.config.platform }}
build-args: |
DISTRIBUTION=${{ matrix.config.tag }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Container

on:
schedule:
- cron: '30 11 * * *' # every day at 11:30 UTC
Expand Down

0 comments on commit 69268fc

Please sign in to comment.