From 51a2a97b518b51b1999752509e731d8ae427866c Mon Sep 17 00:00:00 2001 From: Ari Date: Sun, 11 May 2025 02:45:15 -0400 Subject: [PATCH] I use the js runtime to install a js runtime :< --- .forgejo/workflows/deploy.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index b72aab4..5fc21b8 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -22,7 +22,12 @@ jobs: chmod -R go-rwx ~/.ssh ssh-keyscan -H ${{ vars.SERVER_HOST }} >> ~/.ssh/known_hosts echo "Deploying to ${{ vars.SERVER_HOST }} as ${{ vars.SERVER_USER }} to /var/www/${{ github.ref_name }}" - + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + - name: Install Deno uses: https://github.com/denoland/setup-deno@v2