Remove Commented Env Handling

This commit is contained in:
local-script 2025-05-16 14:53:51 +02:00
commit 6517dc6f8f

View file

@ -9,27 +9,11 @@
$SecureToken = Read-Host "Please enter your GitHub personal access token" -AsSecureString $SecureToken = Read-Host "Please enter your GitHub personal access token" -AsSecureString
$ReleaseToken = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto([System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureToken)) $ReleaseToken = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto([System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureToken))
# Variables # Variables
$RepoPath = "." # Replace with your local repo path $RepoPath = "." # Replace with your local repo path
$ArtifactsPath = "$RepoPath\artifacts" $ArtifactsPath = "$RepoPath\artifacts"
$SolutionFile = "$RepoPath\src\Greenshot.sln" $SolutionFile = "$RepoPath\src\Greenshot.sln"
# Secrets - Replace these with your actual values
#$Env:Box13_ClientId = "your_box13_client_id"
#$Env:Box13_ClientSecret = "your_box13_client_secret"
#$Env:DropBox13_ClientId = "your_dropbox13_client_id"
#$Env:DropBox13_ClientSecret = "your_dropbox13_client_secret"
#$Env:Flickr_ClientId = "your_flickr_client_id"
#$Env:Flickr_ClientSecret = "your_flickr_client_secret"
#$Env:Imgur13_ClientId = "your_imgur13_client_id"
#$Env:Imgur13_ClientSecret = "your_imgur13_client_secret"
#$Env:Photobucket_ClientId = "your_photobucket_client_id"
#$Env:Photobucket_ClientSecret = "your_photobucket_client_secret"
#$Env:Picasa_ClientId = "your_picasa_client_id"
#$Env:Picasa_ClientSecret = "your_picasa_client_secret"
# Step 0: Update Local Repository # Step 0: Update Local Repository
git pull git pull