Skip to content

Commit 78f6fb5

Browse files
committed
Streamline
1 parent 7754422 commit 78f6fb5

File tree

6 files changed

+308
-134
lines changed

6 files changed

+308
-134
lines changed

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
github: [cytopia]
3+
patreon: devilbox

.github/workflows/action_schedule.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name: nightly
1010
# When to run
1111
# -------------------------------------------------------------------------------------------------
1212
on:
13-
# Runs daily
13+
# Every Sunday at 8pm UTC
1414
schedule:
15-
- cron: '0 0 * * *'
15+
- cron: '0 20 * * 0'
1616

1717

1818
jobs:

.github/workflows/params.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
repository_default_branch: master
5656
branches: master
57-
num_latest_tags: 1
57+
num_latest_tags: 0
5858
if: github.event_name == 'schedule'
5959

6060
- name: "[DEBUG] Show settings'"

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ _test-integration:
109109
.PHONY: update-readme
110110
update-readme:
111111
cat "./README.md" \
112-
| perl -0 -pe "s/<!-- modules -->.*<!-- \/modules -->/<!-- modules -->\n$$(./tests/get-modules.sh $(IMAGE) $(NAME) $(VERSION) $(DOCKER_TAG) $(ARCH))\n<!-- \/modules -->/s" \
112+
| perl -0 -pe "s#<!-- modules -->.*<!-- \/modules -->#<!-- modules -->\n$$(./tests/get-modules.sh $(IMAGE) $(NAME) $(VERSION) $(DOCKER_TAG) $(ARCH))\n<!-- \/modules -->#s" \
113113
> "./README.md.tmp"
114114
yes | mv -f "./README.md.tmp" "./README.md"
115115
git diff --quiet || { echo "Build Changes"; git diff; git status; false; }

0 commit comments

Comments
 (0)