File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8383 .\make.ps1 -Command build;
8484 .\make.ps1 -Command install;
8585 .\make.ps1 -Command package;
86- $version = (Get-Date).ToString("yyyyMMdd"); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony dependency manager tool" --description "https://github.com/ponylang/corral" ponylang/nightlies build\corral-x86-64-pc-windows-msvc.zip
86+ $version = (Get-Date).ToString("yyyyMMdd"); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony dependency manager tool" --description "https://github.com/ponylang/corral" ponylang/releases build\corral-x86-64-pc-windows-msvc.zip
8787 env :
8888 CLOUDSMITH_API_KEY : ${{ secrets.CLOUDSMITH_API_KEY }}
8989 - name : Send alert on failure
@@ -106,13 +106,13 @@ jobs:
106106 - name : Build and upload
107107 run : |
108108 python.exe -m pip install --upgrade cloudsmith-cli
109- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
109+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
110110 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
111111 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
112112 .\make.ps1 -Command build;
113113 .\make.ps1 -Command install;
114114 .\make.ps1 -Command package;
115- $version = (Get-Date).ToString("yyyyMMdd"); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony dependency manager tool" --description "https://github.com/ponylang/corral" ponylang/nightlies build\corral-arm64-pc-windows-msvc.zip
115+ $version = (Get-Date).ToString("yyyyMMdd"); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony dependency manager tool" --description "https://github.com/ponylang/corral" ponylang/releases build\corral-arm64-pc-windows-msvc.zip
116116 env :
117117 CLOUDSMITH_API_KEY : ${{ secrets.CLOUDSMITH_API_KEY }}
118118 - name : Send alert on failure
Original file line number Diff line number Diff line change 9797 - uses : actions/checkout@v4.1.1
9898 - name : Test with most recent ponyc release
9999 run : |
100- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
100+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
101101 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
102102 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
103103 .\make.ps1 -Command test 2>&1
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142142 - name : Build and upload
143143 run : |
144144 python.exe -m pip install --upgrade cloudsmith-cli
145- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
145+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
146146 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
147147 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
148148 .\make.ps1 -Command build;
You can’t perform that action at this time.
0 commit comments