From a259d7019ed6601098a46ab8ba426831069d2bba Mon Sep 17 00:00:00 2001 From: JMARyA Date: Thu, 17 Apr 2025 14:01:14 +0200 Subject: [PATCH] fix --- .woodpecker/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 449a116..b8f28e8 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -16,7 +16,7 @@ steps: privileged: true commands: - pacman -Syu --noconfirm && pacman -S --noconfirm navinstall && yes | pacman -Scc - - mkdir os-x86_64 && navinstall create-tar os-x86_64 + - mkdir os-amd64 && navinstall create-tar os-amd64 when: platform: linux/amd64 @@ -25,7 +25,7 @@ steps: privileged: true commands: - pacman -Syu --noconfirm && pacman -S --noconfirm navinstall && yes | pacman -Scc - - mkdir os-aarch64 && navinstall create-tar os-aarch64 + - mkdir os-arm64 && navinstall create-tar os-arm64 when: platform: linux/arm64 @@ -39,3 +39,4 @@ steps: username: jmarya password: from_secret: registry_token + depends_on: [pacstrap_aarch64, pacstrap_x86_64]