diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-11 22:33:47 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-11 22:33:47 +0300 |
commit | 1a67c77d9d318f7e1b9653893fd08efbc6f6a3fa (patch) | |
tree | 88380fb18cab59e3c1d6f6b96b4dc9f0739be8fe /.gitea/workflows/deploy.yml | |
parent | 2b8ddeda4fb5b5deadf693fdc5a197e00f76f6eb (diff) | |
download | popov.link-1a67c77d9d318f7e1b9653893fd08efbc6f6a3fa.tar.xz popov.link-1a67c77d9d318f7e1b9653893fd08efbc6f6a3fa.zip |
Update node version in deploy workflow
Diffstat (limited to '.gitea/workflows/deploy.yml')
-rw-r--r-- | .gitea/workflows/deploy.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1b9d998..0fe9d59 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -9,10 +9,10 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - run: npm ci - run: npm run build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 with: name: website path: dist/ |