strand/release.sh

9 lines
155 B
Bash
Raw Permalink Normal View History

2025-02-05 11:27:25 +01:00
#!/bin/bash
git switch main
git stash
git tag v$(git tag | wc -l)
git push origin HEAD --tags
npm run build
scp -r dist/* strand@madr.se:www
git stash pop