Skip to content

Commit 147237e

Browse files
committed
Small fixes in workflows
* Better names for jobs * Fixed typo
1 parent 5030d18 commit 147237e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pr-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
Build:
11+
build-and-test:
1212
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
Build:
11+
build-and-release:
1212
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v2
@@ -23,7 +23,7 @@ jobs:
2323
echo ("VERSION=" + $versionMatch) >> $env:GITHUB_ENV
2424
echo "Found version $versionMatch"
2525
26-
- name: Create GitHub releease
26+
- name: Create GitHub release
2727
if: ${{ github.ref_name == 'main' }}
2828
uses: "marvinpinto/action-automatic-releases@latest"
2929
with:

0 commit comments

Comments
 (0)