Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Pavindu Lakshan
0f9a8716a8 Fix verbose logs 2025-04-21 15:04:10 +05:30
Pavindu Lakshan
10f87b881d Configure the release to be triggered on workflow dispatch only 2025-04-21 15:03:58 +05:30
Pavindu Lakshan
0de291fc87 Fix copy command 2025-04-21 15:02:48 +05:30
Pavindu Lakshan
b8718bb636 Remove git pull 2025-04-21 15:02:48 +05:30
Pavindu Lakshan
9ad508f127 Debug release workflow 2025-04-21 15:02:48 +05:30
Pavindu Lakshan
92db9f5d13 Add release workflow 2025-04-21 15:02:35 +05:30

View file

@ -13,6 +13,12 @@ set -e
set -o pipefail set -o pipefail
UPSTREAM_BRANCH="main" UPSTREAM_BRANCH="main"
# Check the number of arguments passed.
if [ "$#" -ne 3 ]; then
echo "Error: Invalid or insufficient arguments provided!" >&2
echo "Usage: $0 <GITHUB_TOKEN> <WORK_DIR>" >&2
exit 1
fi
# Assign command line arguments to variables. # Assign command line arguments to variables.
GIT_TOKEN=$1 GIT_TOKEN=$1