From 2d205c6de1b045edc98fda904a6fec1562ba12fe Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Mon, 19 Feb 2024 19:52:43 +0530 Subject: [PATCH] feat: fix deprecated warning --- .woodpecker.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 7b42f59..341de37 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,9 +1,10 @@ -pipeline: - deploy: - image: python - when: - event: push - branch: master - commands: - - make ci-deploy - secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ] +steps: + deploy: + image: python + when: + event: push + branch: master + commands: + - echo foo + - make ci-deploy + secrets: [GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET]