From e051ee1d455c3bc370e8b3c2e1778b50bb3c14c6 Mon Sep 17 00:00:00 2001 From: thislight Date: Sat, 9 Mar 2024 19:14:52 +0800 Subject: [PATCH] depoly: try to see if bare git cmd works --- .forgejo/workflows/depoly.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/depoly.yml b/.forgejo/workflows/depoly.yml index fb2a184..1133a67 100644 --- a/.forgejo/workflows/depoly.yml +++ b/.forgejo/workflows/depoly.yml @@ -6,11 +6,14 @@ jobs: depoly: runs-on: docker container: - image: node:18-bullseye + image: node:20-bullseye name: Depoly blog steps: + - name: Try checkout buck to see if the DNS works + run: git clone -vvv https://github.com/thislight/hexo-theme-buck.git + - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Checkout private submodules(themes or something else).