Skip to content

Commit

Permalink
add cron job to run every two months to keep artifacts from expiring
Browse files Browse the repository at this point in the history
  • Loading branch information
280Zo committed Oct 26, 2024
1 parent 8192a1d commit 253864f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: ZMK Firmware

on: [push, workflow_dispatch]
on:
push:
workflow_dispatch:
schedule:
- cron: '0 0 1 */2 *' # run every two months to keep artifacts from expiring

jobs:
convert-and-store-keymap:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/user_config_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
needs: build
name: Merge Output Artifacts
name: Merge & Prune Artifacts
steps:
- name: Upload Charybdis ZMK Firmware (QWERTY BT)
uses: actions/upload-artifact/merge@v4
Expand Down

0 comments on commit 253864f

Please sign in to comment.