From ada7309184b17300df52aeb56b90fedd50ca5ed2 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 17 Mar 2025 13:09:48 +0800 Subject: [PATCH] Update .yml files --- .gitignore | 2 ++ .woodpecker/.build.yml | 16 +++++++++------- .woodpecker/.deploy.yml | 1 - 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index cc91b34..809059b 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,5 @@ npm-debug.log* yarn-debug.log* yarn-error.log* + +.vscode \ No newline at end of file diff --git a/.woodpecker/.build.yml b/.woodpecker/.build.yml index 67c27c7..8e5f34b 100644 --- a/.woodpecker/.build.yml +++ b/.woodpecker/.build.yml @@ -13,10 +13,12 @@ steps: - docker push "$REGISTRY_IMAGE_TAG" volumes: - /var/run/docker.sock:/var/run/docker.sock - secrets: - [ - FORGEJO_REGISTRY_URL, - FORGEJO_REGISTRY_USERNAME, - FORGEJO_REGISTRY_PASSWORD, - REGISTRY_IMAGE_TAG, - ] + environment: + FORGEJO_REGISTRY_URL: + from_secret: FORGEJO_REGISTRY_URL + FORGEJO_REGISTRY_USERNAME: + from_secret: FORGEJO_REGISTRY_USERNAME + FORGEJO_REGISTRY_PASSWORD: + from_secret: FORGEJO_REGISTRY_PASSWORD + REGISTRY_IMAGE_TAG: + from_secret: REGISTRY_IMAGE_TAG diff --git a/.woodpecker/.deploy.yml b/.woodpecker/.deploy.yml index 42c95f7..dc589a9 100644 --- a/.woodpecker/.deploy.yml +++ b/.woodpecker/.deploy.yml @@ -13,4 +13,3 @@ steps: - npm install --save-dev - npm run build - npx wrangler pages deploy "./build/" --project-name blog --branch master --commit-dirty - secrets: [CLOUDFLARE_ACCOUNT_ID, CLOUDFLARE_API_TOKEN]