mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 20:31:16 +00:00
c333d858ab
We need a dedicated build user to be able to distinguish the distribution channel. See https://github.com/syncthing/syncthing/issues/9140
41 lines
945 B
YAML
41 lines
945 B
YAML
name: Image Builder Template
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
push:
|
|
required: true
|
|
type: boolean
|
|
|
|
env:
|
|
# Our build metadata
|
|
BUILD_USER: android-builder
|
|
BUILD_HOST: github.syncthing.net
|
|
# template var
|
|
image: ghcr.io/syncthing/syncthing-android-builder
|
|
|
|
jobs:
|
|
build-image:
|
|
name: Build Builder Docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
|
|
- uses: docker/setup-buildx-action@v2
|
|
|
|
- uses: docker/login-action@v2
|
|
if: ${{ inputs.push }}
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
tags: '${{ env.image }}:latest,${{ env.image }}:${{ github.sha }}'
|
|
push: ${{ inputs.push }}
|