Skip to content

Commit 43f0795

Browse files
committed
imp: auto build and publish every week
1 parent d4cf373 commit 43f0795

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/docker_auto.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
name: Automatic build on release and push to Docker Hub
22
on:
3+
schedule:
4+
- cron: '0 0 * * SUN'
35
push:
46
tags:
57
- "[0-9]+.[0-9]+.[0-9]+"
68
- "[0-9]+.[0-9]+.[0-9]+-[0-9]+"
79
jobs:
10+
tests:
11+
uses: ./.github/workflows/test.yml
812
main:
913
runs-on: ubuntu-latest
14+
needs:
15+
- tests
1016
env:
1117
DOCKER_PLATFORMS: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/386
1218
DOCKER_IMAGE: ghtardo/docker-privoxy-https

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [main]
66
pull_request:
77
branches: [main]
8+
workflow_call:
89

910
jobs:
1011
privoxy:

0 commit comments

Comments
 (0)