From 73efb60e47a396903e3439804a770dfcf6199502 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 17 Mar 2025 12:33:34 +0800 Subject: [PATCH 1/2] vault backup: 2025-03-17 12:33:34 Affected files: docs/Command Snippets/Docker Run.md --- docs/Command Snippets/Docker Run.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/Command Snippets/Docker Run.md b/docs/Command Snippets/Docker Run.md index 0d3bca2..8e33bae 100644 --- a/docs/Command Snippets/Docker Run.md +++ b/docs/Command Snippets/Docker Run.md @@ -1,4 +1,3 @@ - - [QBittorrent](https://ghcr.io/hotio/qbittorrent) ```bash docker run \ From ada7309184b17300df52aeb56b90fedd50ca5ed2 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 17 Mar 2025 13:09:48 +0800 Subject: [PATCH 2/2] 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]