Skip to content

Commit fca812d

Browse files
authored
Issue #1043 Update the PyPi token (#1044)
Fixes #1043 # Description In this commit the PyPi token is updated in the TeamCity pipeline. This should resolve the failing Deploy build pipeline. The token has been tested locally to verify that it works # Checklist <!--- Before requesting review, please go through this checklist: --> - [x] Links to correct issue - [ ] Update changelog, if changes affect users - [x] PR title starts with ``Issue #nr``, e.g. ``Issue #737`` - [ ] Unit tests were added - [ ] **If feature added**: Added/extended example
1 parent 96209dd commit fca812d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.teamcity/Deploy/DeployProject.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ object DeployPackage : BuildType({
166166
param("env.TWINE_USERNAME", "__token__")
167167
param("env.TWINE_NON_INTERACTIVE", "true")
168168
param("env.PIXI_BETA_WARNING_OFF", "true")
169-
password("env.TWINE_PASSWORD", "credentialsJSON:2881ed77-6bd2-439f-99d6-c19b776099b0")
169+
password("env.TWINE_PASSWORD", "credentialsJSON:2cea585c-e4f8-4a45-9941-9189daf09ecc")
170170
}
171171

172172
vcs {
@@ -185,8 +185,8 @@ object DeployPackage : BuildType({
185185
id = "Deploy_to_PyPi"
186186
workingDir = "imod-python"
187187
scriptContent = """
188-
pixi run --environment default --frozen twine check ../dist
189-
pixi run --environment default --frozen twine upload ../dist/*
188+
pixi run --frozen twine check ../dist/*
189+
pixi run --frozen twine upload ../dist/*
190190
""".trimIndent()
191191
}
192192
}

.teamcity/settings.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ node (Plugins -> teamcity-configs -> teamcity-configs:generate),
3030
the 'Debug' option is available in the context menu for the task.
3131
*/
3232

33-
version = "2023.11"
33+
version = "2024.03"
3434
project(_Self.MainProject)

0 commit comments

Comments
 (0)