Sha256: f6072449c33e3fac66af11c385f4a8856ce2d55b23865251d20fd9a760ed62ce
Contents?: true
Size: 610 Bytes
Versions: 10
Compression:
Stored size: 610 Bytes
Contents
param( [string]$step, [string]$script ) # Performs a delegated release step in a CircleCI Windows container using PowerShell. This # mechanism is described in scripts/circleci/README.md. All of the necessary environment # variables should already be in the generated CircleCI configuration. $ErrorActionPreference = "Stop" New-Item -Path "./artifacts" -ItemType "directory" -Force | Out-Null $env:LD_RELEASE_TEMP_DIR = "$env:TEMP\project-releaser-temp" New-Item -Path $env:LD_RELEASE_TEMP_DIR -ItemType "directory" -Force | Out-Null Write-Host Write-Host "[$step] executing $script" & "./$script"
Version data entries
10 entries across 10 versions & 2 rubygems