Skip to content

Commit

Permalink
ci: add weekly rebuild
Browse files Browse the repository at this point in the history
This ensures our project keeps building and that there is always a package
produced by our CI onmaster branch available.
  • Loading branch information
romangg committed Feb 19, 2024
1 parent 0f3e270 commit ed226a4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# SPDX-FileCopyrightText: 2024 Roman Gilg <subdiff@gmail.com>
# SPDX-License-Identifier: MIT
name: Weekly Project Rebuild
on:
schedule:
- cron: '0 5 * * 4'
jobs:
build:
if: github.repository == 'winft/kdisplay'
uses: ./.github/workflows/build.yml
with:
image: registry.gitlab.com/kwinft/ci-images/archlinux/kwinft-base-master

package:
uses: ./.github/workflows/package.yml
needs: build
with:
image: registry.gitlab.com/kwinft/ci-images/archlinux/kwinft-base-master
package-name: kdisplay

0 comments on commit ed226a4

Please sign in to comment.