Update release.yml

This commit is contained in:
pacnpal
2025-02-10 16:05:18 -05:00
committed by GitHub
parent 096a52cda5
commit 2c57b7a5ba

View File

@@ -22,6 +22,12 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Rename existing dist/index.js
run: |
if [ -f dist/index.js ]; then
mv -f dist/index.js dist/index.js.old
fi
- name: Build
run: npm run build