-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (53 loc) · 1.91 KB
/
main.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
name: .NET Desktop CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch: # This line enables manual triggering of the workflow
permissions:
contents: write
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x' # Replace with the .NET version your project targets
- name: Build Solution
run: dotnet build --configuration Release
- name: Run Tests
run: dotnet test
- name: Publish Application
run: dotnet publish --configuration Release -o ./publish -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained=false
- name: Upload Published App as Artifact
uses: actions/upload-artifact@v2
with:
name: published-app
path: ./publish/**
- name: Get Current Date
id: current_date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
shell: bash
- name: Create Release
id: create_release # This ID is used to reference the output of this step
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: release-${{ steps.current_date.outputs.date }}-${{ github.run_number }}
release_name: Release ${{ steps.current_date.outputs.date }}-${{ github.run_number }}
draft: false
prerelease: false
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # Correctly references the output of the Create Release step
asset_path: ./publish/DeFRaG_Helper.exe
asset_name: DeFRaG_Helper.exe
asset_content_type: application/octet-stream