diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 428dbd2..ed94f2d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: npm ci npm run build - name: Upload Artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -38,12 +38,14 @@ jobs: uses: actions/checkout@v3 - name: Download Artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: dist + path: ./dist - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.3.0 with: branch: gh-pages - folder: 'dist' \ No newline at end of file + folder: 'dist' + clean: true \ No newline at end of file