Skip to content

build: release pipeline fixes #1657

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/ci/worker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ variables:
value: deps/,build/

extends:
template: v1/1ES.Unofficial.PipelineTemplate.yml@1es
template: v1/1ES.Official.PipelineTemplate.yml@1es
parameters:
pool:
name: 1es-pool-azfunc
Expand Down
8 changes: 4 additions & 4 deletions eng/templates/official/jobs/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
if($newWorkerVersion -match '(\d)+.(\d)+.(\d)+') {
# Create GitHub credential
git config --global user.name "AzureFunctionsPython"
git config --global user.email "funcdisc@microsoft.com"
git config --global user.email "azfunc@microsoft.com"

# Clone Repository
git clone https://[email protected]/Azure/azure-functions-python-worker
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
if($newWorkerVersion -match '(\d)+.(\d)+.(\d)+') {
# Create GitHub credential
git config --global user.name "AzureFunctionsPython"
git config --global user.email "funcdisc@microsoft.com"
git config --global user.email "azfunc@microsoft.com"

# Create GitHub credential
$credential = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("${githubUser}:${githubToken}"))
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
if($newWorkerVersion -match '(\d)+.(\d)+.(\d)+') {
# Create GitHub credential
git config --global user.name "AzureFunctionsPython"
git config --global user.email "funcdisc@microsoft.com"
git config --global user.email "azfunc@microsoft.com"

# Create GitHub credential
$credential = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("${githubUser}:${githubToken}"))
Expand Down Expand Up @@ -361,7 +361,7 @@ jobs:
if($newWorkerVersion -match '(\d)+.(\d)+.(\d)+') {
# Create GitHub credential
git config --global user.name "AzureFunctionsPython"
git config --global user.email "funcdisc@microsoft.com"
git config --global user.email "azfunc@microsoft.com"

# Clone Repository
git clone https://[email protected]/Azure/azure-functions-python-worker
Expand Down
Loading