We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8641c55 commit 298e95dCopy full SHA for 298e95d
.github/workflows/cli-publish.yaml
@@ -44,6 +44,8 @@ jobs:
44
Invoke-WebRequest -Uri $URL -OutFile "$DEST_DIR\$ZIP_NAME"
45
Expand-Archive -Path "$DEST_DIR\$ZIP_NAME" -DestinationPath $DEST_DIR
46
47
+ Get-ChildItem $DEST_DIR | Format-Table Name,Length, -AutoSize
48
+
49
Write-Host "Aptos CLI version $env:VERSION extracted to $DEST_DIR"
50
51
- name: Publish to Choco
@@ -83,6 +85,10 @@ jobs:
83
85
84
86
choco pack --version $VERSION configuration=release
87
- choco push aptos.$VERSION.nupkg -k "$env:CHOCO_API_KEY" --source https://push.chocolatey.org/
88
+ Get-ChildItem
89
90
+ (Get-Item "aptos.$VERSION.nupkg").Length
91
92
+ #choco push aptos.$VERSION.nupkg -k "$env:CHOCO_API_KEY" --source https://push.chocolatey.org/
93
94
Set-Location -Path ".."
0 commit comments