diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3c4854f2..78652d68 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -11,6 +11,11 @@ jobs: deploy: runs-on: ubuntu-latest steps: + - name: Install Node for Checkout + run: | + if command -v apt-get >/dev/null; then apt-get update && apt-get install -y nodejs git; fi + if command -v apk >/dev/null; then apk add nodejs git; fi + - name: Checkout Code uses: actions/checkout@v4