Skip to content

Commit 85f8023

Browse files
authored
Merge pull request #19 from krzk/ci-scheduled-builds
ci: run builds periodically
2 parents 62d67fc + 2c2e9d4 commit 85f8023

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@
99
# https://github.com/linux-nfc/neard
1010
#
1111
name: "Builds"
12-
on: [push, pull_request, workflow_dispatch]
12+
on:
13+
pull_request:
14+
push:
15+
schedule:
16+
# Run at 1:01 PM, every Tuesday
17+
- cron: '1 13 * * 2'
18+
workflow_dispatch:
1319

1420
jobs:
1521
job:

ci/archlinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ case $CC in
1616
;;
1717
esac
1818

19-
pacman -Sy --noconfirm \
19+
pacman -Syu --noconfirm \
2020
libftdi-compat \
2121
libyaml \
2222
systemd-libs \

0 commit comments

Comments
 (0)