From 5a40277a6a88aa85e8b6c18fdef847e84f0d2d2f Mon Sep 17 00:00:00 2001 From: Zpekii Date: Sat, 3 Jan 2026 16:32:52 +0800 Subject: [PATCH] ci: update --- .gitea/workflows/deploy.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 2a0d6ac..6c69999 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -16,12 +16,18 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code - uses: actions/checkout@v6 + uses: actions/checkout@v4 + with: + fetch-depth: 1 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository run: | ls ${{ gitea.workspace }} + - name: Check binded volumes + run: | + ls /var/data + ls /var/deploy - name: check Go version run: go version # - name: check Docker version