-
-
Notifications
You must be signed in to change notification settings - Fork 30
32 lines (29 loc) · 787 Bytes
/
job-deploy-linux.yml
File metadata and controls
32 lines (29 loc) · 787 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
32
# Deploy for linux
#
name: linux Deploy Workflow
on:
workflow_call:
inputs:
targetFramework:
type: string
required: true
configuration:
type: string
default: 'Release'
jobs:
deploy:
name: deploy-linux-${{ inputs.configuration }}
runs-on: ubuntu-24.04
steps:
- uses: actions/download-artifact@v6
with:
name: Build-linux-Release
path: Result.Linux.x64.${{ inputs.configuration }}
- name: Publish Artifacts
uses: actions/upload-artifact@v6
with:
name: linux-${{ inputs.configuration }}
if-no-files-found: error
path: |
Result.Linux.x64.${{inputs.configuration}}/bin
Result.Linux.x64.${{inputs.configuration}}/lib