Skip to content

Commit

Permalink
Fix made Windows release
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Aug 30, 2023
1 parent 5a11faa commit 49f3361
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -147,12 +147,12 @@ jobs:
path: build/libs
key: libs-windows-2022-${{ hashFiles('make.ps1', 'CMakeLists.txt', 'libs/CMakeLists.txt') }}
- name: Configure
run: .\make.ps1 -Command configure -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION
run: .\make.ps1 -Command configure -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION)
- name: Build
run: \make.ps1 -Command build -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION
run: \make.ps1 -Command build -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION)
- name: Install
run: .\make.ps1 -Command install -Config Release -Prefix "build\install\release"
- name: Package
run: .\make.ps1 -Command package -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION
run: .\make.ps1 -Command package -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION)
- name: Upload
run: $version = (Get-Content .\VERSION); cloudsmith push raw --version $version --api-key ${{ secrets.CLOUDSMITH_API_KEY }} --summary "Pony compiler" --description "https://github.com/ponylang/ponyc" ponylang/nightlies build\ponyc-x86-64-pc-windows-msvc.zip

0 comments on commit 49f3361

Please sign in to comment.