-
Notifications
You must be signed in to change notification settings - Fork 0
126 lines (102 loc) · 3.56 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
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
117
118
119
120
121
122
123
124
125
126
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Publish Game
on:
push:
branches:
- feature/workflows
tags:
- '*'
workflow_dispatch:
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
cache: true
cache-dependency-path: "**/packages.lock.json"
- name: Cache Content directory
uses: actions/cache@v4
with:
path: Logical/bin/Release/net8.0/linux-x64/Content
key: content-${{ hashFiles('Logical/bin/Release/net8.0/linux-x64/Content/**') }}
restore-keys: |
content-
- name: Restore dependencies
run: dotnet restore
- name: Publish
run: dotnet publish -c Release -r linux-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained
- name: Get latest tag
id: get_latest_tag
run: |
git fetch --tags
echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- name: Get last commit SHA
id: get_last_commit
run: |
echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Set artifact name
id: set_artifact_suffix
run: |
if [ -n "${{ steps.get_latest_tag.outputs.tag }}" ]; then
echo "suffix=${{ steps.get_latest_tag.outputs.tag }}" >> $GITHUB_OUTPUT
else
echo "suffix=${{ steps.get_last_commit.outputs.sha }}" >> $GITHUB_OUTPUT
fi
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Re-Logical_linux-x64_${{ steps.set_artifact_suffix.outputs.suffix }}
path: Logical/bin/Release/net8.0/linux-x64/publish
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
cache: true
cache-dependency-path: "**/packages.lock.json"
- name: Cache Content directory
uses: actions/cache@v4
with:
path: Logical/bin/Release/net8.0/win-x64/Content
key: content-${{ hashFiles('Logical/bin/Release/net8.0/win-x64/Content/**') }}
restore-keys: |
content-
- name: Restore dependencies
run: dotnet restore
- name: Publish
run: dotnet publish -c Release -r win-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained
- name: Get latest tag
id: get_latest_tag
run: |
git fetch --tags
echo "tag=$(git describe --tags --abbrev=0 --always)" >> $GITHUB_OUTPUT
- name: Get last commit SHA
id: get_last_commit
run: |
echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Set artifact name
id: set_artifact_suffix
run: |
if [ -n "${{ steps.get_latest_tag.outputs.tag }}" ]; then
echo "suffix=${{ steps.get_latest_tag.outputs.tag }}" >> $GITHUB_OUTPUT
else
echo "suffix=${{ steps.get_last_commit.outputs.sha }}" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Re-Logical_win-x64_${{ steps.set_artifact_name.outputs.artifact_name }}
path: Logical/bin/Release/net8.0/win-x64/publish