Skip to content

Commit ebbcd8f

Browse files
committed
add names and correct Debug output
1 parent 686798a commit ebbcd8f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ env:
4242

4343
jobs:
4444
build-linux:
45+
name: Build for Linux
4546
runs-on: ubuntu-latest
4647
steps:
4748
- name: Checkout Code
@@ -99,6 +100,7 @@ jobs:
99100
./Intersect.Server/bin/Release/*/*/publish
100101
101102
build-macos:
103+
name: Build for MacOS
102104
runs-on: macos-latest
103105
steps:
104106
- name: Checkout Code
@@ -156,6 +158,7 @@ jobs:
156158
./Intersect.Server/bin/Release/*/*/publish
157159
158160
build-windows:
161+
name: Build for Windows
159162
runs-on: windows-latest
160163
steps:
161164
- name: Checkout Code
@@ -213,6 +216,7 @@ jobs:
213216
./Intersect.Server/bin/Release/*/*/publish
214217
215218
debug-build-artifacts:
219+
name: Debug Build Artifacts
216220
if: inputs.workflowDebug == true
217221
needs: [build-linux, build-macos, build-windows]
218222
runs-on: ubuntu-latest
@@ -227,6 +231,7 @@ jobs:
227231
run: ls -R .
228232

229233
publish-github:
234+
name: Publish GitHub Release
230235
if: inputs.workflowDebug != true
231236
needs: [build-linux, build-macos, build-windows]
232237
runs-on: ubuntu-latest
@@ -265,7 +270,7 @@ jobs:
265270
version: ${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}.${{ github.run_number }}+build.${{ github.sha }}
266271

267272
- name: Debug output
268-
if: inputs.workflowDebug == true
273+
if: inputs.packagingDebug == true
269274
run: ls -R ./dist
270275

271276
- name: Publish GitHub Release
@@ -279,7 +284,8 @@ jobs:
279284
prerelease: true
280285
tag: v${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}.${{ github.run_number }}
281286

282-
publish:
287+
publish-forum:
288+
name: Publish to Forum
283289
if: inputs.workflowDebug != true && inputs.packagingDebug != true && inputs.skipForumPublish != true
284290
needs: publish-github
285291
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)