Files
cinny-desktop/build-and-publish.sh

11 lines
159 B
Bash

#!/bin/bash
# Set GitHub token for publishing
export GH_TOKEN="ghtoken"
# Run the build and publish
npm run build
# Exit with the build's exit code
exit $?