-
-
Notifications
You must be signed in to change notification settings - Fork 30
31 lines (28 loc) · 724 Bytes
/
job-deploy-windows.yml
File metadata and controls
31 lines (28 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Deploy for Windows
#
name: Windows Deploy Workflow
on:
workflow_call:
inputs:
targetFramework:
type: string
required: true
configuration:
type: string
default: 'Release'
jobs:
deploy:
name: deploy-windows-x64-${{ inputs.configuration }}
runs-on: windows-2025
steps:
- uses: actions/download-artifact@v6
with:
path: Result.Windows.x64.MultiConfig
name: Build-Windows-x64-Release
- name: Publish Artifacts
uses: actions/upload-artifact@v6
with:
name: Windows-x64-${{ inputs.configuration }}
if-no-files-found: error
path: |
Result.Windows.x64.MultiConfig/bin