mirror of
https://github.com/siteboon/claudecodeui.git
synced 2025-12-08 20:29:37 +00:00
5 lines
136 B
Bash
Executable File
5 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
# Load environment variables from .env
|
|
export $(grep -v '^#' .env | grep '^GITHUB_TOKEN=' | xargs)
|
|
exec npx release-it "$@"
|