From 5f8eeb97d45e08166ff0b0856cc908be44210a93 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Sat, 7 Oct 2023 23:02:33 +0200 Subject: [PATCH] Test other syntax for build_args --- .woodpecker.yml | 2 +- Dockerfile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 41547d3..5ec2fc1 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -10,7 +10,7 @@ steps: platforms: linux/arm64/v8 tag: *flutter_version build_args: - FLUTTER_VERSION: *flutter_version + - FLUTTER_VERSION=3.13.6 auto_tag: true username: from_secret: repository_username diff --git a/Dockerfile b/Dockerfile index 511ff04..a72db0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM debian:bookworm-20230919-slim # The version of Flutter to use ARG FLUTTER_VERSION +RUN echo $FLUTTER_VERSION + # Set environment variables ENV PATH="$PATH:/opt/flutter/bin"