From 4c27726a353bfded802fa64115f1071c77fa4085 Mon Sep 17 00:00:00 2001 From: Chris Wilkinson Date: Mon, 6 Jan 2025 15:31:51 +0000 Subject: [PATCH] ci: fix build Refs https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d912bea..876fd5f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,7 +26,7 @@ jobs: run: npm run build - name: 'Upload build' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -46,7 +46,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: 'Download build' - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dist path: dist