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]