-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (70 loc) · 2.28 KB
/
publish.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
name: Publish C# Project
on:
push:
branches:
- main
# tags:
# - 'v*'
jobs:
build_publish:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Publish project
run: dotnet publish DesktopICO.csproj --configuration Release --output ./bin/publish
# - name: Create Release
# id: create_release
# uses: softprops/action-gh-release@v1
# with:
# tag: ${{ github.ref }}
# files: ./bin/publish/*
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get tag description
id: tag_description
run: |
TAG_DESCRIPTION=$(git tag -l --format='%(contents)' ${{ github.ref_name }})
echo "tag_description=${TAG_DESCRIPTION}" >> $GITHUB_OUTPUT
shell: bash
- name: Get latest commit message
id: commit_message
run: |
COMMIT_MESSAGE=$(git log -1 --pretty=%B)
echo "commit_message=${COMMIT_MESSAGE}" >> $GITHUB_OUTPUT
shell: bash
- name: Check existing release
id: check_release
run: |
try {
gh release view ${{ github.ref_name }} || true
echo "release_exists=true" >> $env:GITHUB_OUTPUT
} catch {
echo "release_exists=false" >> $env:GITHUB_OUTPUT
}
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Delete existing release
run: |
if (${{ steps.check_release.outputs.release_exists }} -eq 'true') {
gh release delete ${{ github.ref_name }}
}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${{ github.ref_name }} `
--title "${{ github.ref_name }} ${{ steps.tag_description.outputs.tag_description }}" `
--notes "Release for ${{ github.ref_name }}
Changes in this release:
${{ steps.commit_message.outputs.commit_message }} " \
--draft=false \
**/*.exe
shell: pwsh