20 lines
523 B
YAML
20 lines
523 B
YAML
|
variables:
|
||
|
- &flutter_version '3.13.6'
|
||
|
|
||
|
steps:
|
||
|
docker-build:
|
||
|
image: woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
repo: git.polynom.me/papatutuwawa/docker-flutter
|
||
|
registry: git.polynom.me
|
||
|
platforms: linux/arm64/v8
|
||
|
tag: *flutter_version
|
||
|
build_args:
|
||
|
FLUTTER_VERSION: *flutter_version
|
||
|
auto_tag: true
|
||
|
username:
|
||
|
from_secret: repository_username
|
||
|
password:
|
||
|
from_secret: repository_password
|
||
|
secrets: [ repository_username, repository_password ]
|