-
-
Notifications
You must be signed in to change notification settings - Fork 178
68 lines (59 loc) · 2.01 KB
/
release.yaml
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
name: Release
on:
workflow_dispatch:
inputs:
tag:
description: "tag: git tag you want create. (sample 1.0.0)"
required: true
dry-run:
description: "dry-run: false = create release/nuget. true = never create release/nuget."
required: true
default: false
type: boolean
env:
GIT_TAG: ${{ github.event.inputs.tag }}
jobs:
update-version-number:
uses: ./.github/workflows/update-version-number.yaml
with:
tag: ${{ github.event.inputs.tag }}
dry-run: ${{ fromJson(github.event.inputs.dry-run) }}
build-unity:
needs: [update-version-number]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
- name: Build SourceGenerator
run: |
dotnet build -c Release ./VContainer.SourceGenerator /p:Version=${{ env.GIT_TAG }}
dotnet build -c Release ./VContainer.SourceGenerator.Roslyn3 /p:Version=${{ env.GIT_TAG }}
- uses: actions/upload-artifact@v3
with:
name: VContainer.${{ env.GIT_TAG }}
path: |
./VContainer.SourceGenerator/bin/Release/netstandard2.0/VContainer.SourceGenerator.dll
./VContainer.SourceGenerator.Roslyn3/bin/Release/netstandard2.0/VContainer.SourceGenerator.Roslyn3.dll
create-release:
needs: [build-unity]
runs-on: ubuntu-latest
if: github.event.inputs.dry-run == 'false'
permissions:
contents: write
timeout-minutes: 10
steps:
- uses: actions/download-artifact@v4
- uses: softprops/action-gh-release@v1
id: create_release
with:
tag_name: ${{ env.GIT_TAG }}
name: v${{ env.GIT_TAG }}
draft: true
prerelease: false
generate_release_notes: true
files: |
./VContainer.SourceGenerator/bin/Release/netstandard2.0/VContainer.SourceGenerator.dll
./VContainer.SourceGenerator.Roslyn3/bin/Release/netstandard2.0/VContainer.SourceGenerator.Roslyn3.dll