From 569fb8f6ceda529641695bc513f1b561340c3bd0 Mon Sep 17 00:00:00 2001 From: qpismont Date: Fri, 5 Jan 2024 13:36:24 +0100 Subject: [PATCH] fix apt install + change ci job name --- .woodpecker/.build.yml | 4 ++-- .woodpecker/.publish.yml | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.build.yml b/.woodpecker/.build.yml index 76e8ce0..5cc3d07 100644 --- a/.woodpecker/.build.yml +++ b/.woodpecker/.build.yml @@ -1,8 +1,8 @@ steps: - lint: + build: image: denoland/deno:1.39.2 commands: - apt update - - apt install curl + - apt install curl -y - curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && apt-get install -y nodejs - deno task build \ No newline at end of file diff --git a/.woodpecker/.publish.yml b/.woodpecker/.publish.yml index 75f6c52..3ee2273 100644 --- a/.woodpecker/.publish.yml +++ b/.woodpecker/.publish.yml @@ -2,9 +2,12 @@ when: branch: main steps: - lint: + publish: image: denoland/deno:1.39.2 commands: + - apt update + - apt install curl -y + - curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && apt-get install -y nodejs - deno task publish depends_on: