mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Automatically upload the Windows release.
This commit is contained in:
parent
09cb9c3381
commit
b4503b8645
15
.github/workflows/ci-windows.yml
vendored
15
.github/workflows/ci-windows.yml
vendored
@ -2,6 +2,9 @@ name: Windows CI
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
jobs:
|
||||
@ -32,9 +35,17 @@ jobs:
|
||||
env:
|
||||
LDFLAGS: /DEBUG:FASTLINK /INCREMENTAL
|
||||
run: |
|
||||
cmake -A x64 -G "Visual Studio 16 2019" -Wdev ..
|
||||
cmake -A x64 -D CMAKE_BUILD_TYPE=${{ github.event_name == 'release' && 'Release' || 'Debug' }} -G "Visual Studio 16 2019" -Wdev ..
|
||||
|
||||
- name: Build InspIRCd
|
||||
working-directory: ${{ github.workspace }}/win/build
|
||||
run: |
|
||||
msbuild PACKAGE.vcxproj /M:3 /P:Configuration=Release /P:Platform=x64 /VERBOSITY:MINIMAL
|
||||
msbuild PACKAGE.vcxproj /M:3 /P:Configuration=${{ github.event_name == 'release' && 'Release' || 'Debug' }} /P:Platform=x64 /VERBOSITY:MINIMAL
|
||||
|
||||
- name: Upload installer
|
||||
if: "${{ github.event_name == 'release' }}"
|
||||
working-directory: ${{ github.workspace }}/win/build
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh release upload ${{ github.event.release.tag_name }} $(Get-ChildItem InspIRCd-*.exe)
|
||||
|
Loading…
x
Reference in New Issue
Block a user