mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
20 lines
394 B
YAML
20 lines
394 B
YAML
name: Builder Image
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'docker/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-image:
|
|
if: github.event_name == 'pull_request'
|
|
uses: ./.github/workflows/image-builder-template.yaml
|
|
with:
|
|
push: false
|
|
|
|
push-image:
|
|
if: github.event_name == 'workflow_dispatch'
|
|
uses: ./.github/workflows/image-builder-template.yaml
|
|
with:
|
|
push: true
|