-
Notifications
You must be signed in to change notification settings - Fork 2
116 lines (92 loc) · 3.26 KB
/
dotnet.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: .NET Release
on:
push:
tags:
- 'v*.*.*' # Matches version tags like v1.0.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x' # Adjust to your .NET version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish for Ubuntu
run: dotnet publish --configuration Release --output ./publish/ubuntu --no-build
- name: Archive Ubuntu Artifacts
run: zip -r "PetsOptimizer-${{ github.ref }}-ubuntu.zip" ./publish/ubuntu
- name: Upload Ubuntu Artifact
uses: actions/upload-artifact@v2
with:
name: "publish-ubuntu-${{ github.ref }}"
path: "PetsOptimizer-${{ github.ref }}-ubuntu.zip"
build_windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x' # Adjust to your .NET version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish for Windows
run: dotnet publish --configuration Release --output ./publish/windows --no-build
- name: Archive Windows Artifacts
run: Compress-Archive -Path ./publish/windows -DestinationPath "PetsOptimizer-${{ github.ref }}-windows.zip"
- name: Upload Windows Artifact
uses: actions/upload-artifact@v2
with:
name: "publish-windows-${{ github.ref }}"
path: "PetsOptimizer-${{ github.ref }}-windows.zip"
create_release:
runs-on: ubuntu-latest
needs: [build, build_windows]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download Ubuntu build artifacts
uses: actions/download-artifact@v2
with:
name: "publish-ubuntu-${{ github.ref }}"
- name: Download Windows build artifacts
uses: actions/download-artifact@v2
with:
name: "publish-windows-${{ github.ref }}"
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Ubuntu Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "PetsOptimizer-${{ github.ref }}-ubuntu.zip"
asset_name: "PetsOptimizer-${{ github.ref }}-ubuntu.zip"
asset_content_type: application/zip
- name: Upload Windows Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "PetsOptimizer-${{ github.ref }}-windows.zip"
asset_name: "PetsOptimizer-${{ github.ref }}-windows.zip"
asset_content_type: application/zip