Skip to content

Commit

Permalink
Split push and schedule workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlemke committed Sep 14, 2023
1 parent 4e5a828 commit 73ea901
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/docker.build.bullseye.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches-ignore:
- 'bionic'
- 'buster'
tags:
- 'v*.*.*'

jobs:
build:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/docker.build.onpush.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Build Docker Image on tag
on:
push:
branches-ignore:
- 'bionic'
- 'buster'
tags:
- 'v*.*.*'

jobs:
build:
uses: ./.github/workflows/docker.build.bullseye.yaml

0 comments on commit 73ea901

Please sign in to comment.