diff options
Diffstat (limited to '.github/workflows/build-openwrt.yml')
-rw-r--r-- | .github/workflows/build-openwrt.yml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.github/workflows/build-openwrt.yml b/.github/workflows/build-openwrt.yml index b5a443b83..9d329d584 100644 --- a/.github/workflows/build-openwrt.yml +++ b/.github/workflows/build-openwrt.yml @@ -1,6 +1,9 @@ name: OpenWrt Build on: + schedule: + # At the end of every day + - cron: '0 0 * * *' push: branches: - main @@ -26,18 +29,9 @@ jobs: - arch: mips_24kc target: ath79-generic - - arch: powerpc_464fp - target: apm821xx-nand - - - arch: aarch64_cortex-a53 - target: mvebu-cortexa53 - - arch: arm_cortex-a15_neon-vfpv4 target: armvirt-32 - - arch: i386_pentium-mmx - target: x86-geode - - arch: x86_64 target: x86-64 @@ -48,7 +42,7 @@ jobs: fetch-depth: 1 - name: Build - uses: openwrt/gh-action-sdk@main + uses: openwrt/gh-action-sdk@v7 env: ARCH: ${{ matrix.arch }}-snapshot FEED_DIR: ${{ github.workspace }}/packages/openwrt |