Skip to content

Commit b7bce05

Browse files
committed
chore: improve step names for all workflows
1 parent 6d1b803 commit b7bce05

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Shellcheck
88
runs-on: ubuntu-latest
99
steps:
10-
- name: Checkout the repo
10+
- name: Checkout the repository
1111
uses: actions/checkout@v3
1212

1313
- name: Lint Bash scripts

.github/workflows/build-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
image:
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout the repo
11+
- name: Checkout the repository
1212
uses: actions/checkout@v3
1313

1414
- name: Import environment variables

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
pkg_version: ${{ steps.var.outputs.pkg_version }}
2121
pkg_rel: ${{ steps.var.outputs.pkg_rel }}
2222
steps:
23-
- name: Checkout the repo
23+
- name: Checkout the repository
2424
uses: actions/checkout@v3
2525

2626
- name: Import environment variables
@@ -30,7 +30,7 @@ jobs:
3030
echo "$line" >> $GITHUB_ENV
3131
done < assets/variables
3232
33-
- name: Set env vars
33+
- name: Set job variables
3434
id: var
3535
run: . ./scripts/set-job-vars.bash
3636

@@ -49,7 +49,7 @@ jobs:
4949
PKG_VERSION: ${{ needs.check.outputs.pkg_version }}
5050
PKG_REL: ${{ needs.check.outputs.pkg_rel }}
5151
steps:
52-
- name: Checkout the repo
52+
- name: Checkout the repository
5353
uses: actions/checkout@v3
5454

5555
- name: Import environment variables
@@ -62,7 +62,8 @@ jobs:
6262
- name: Build artifacts
6363
run: bash ./scripts/build-artifacts.bash
6464

65-
- uses: ncipollo/release-action@v1
65+
- name: Create release & upload artifacts
66+
uses: ncipollo/release-action@v1
6667
with:
6768
tag: ${{ needs.check.outputs.pkg_version }}-${{ needs.check.outputs.pkg_rel }}
6869
bodyFile: ${{ env.USR_HOME }}/body.md

.github/workflows/manual.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
pkg_version: ${{ steps.var.outputs.pkg_version }}
2929
pkg_rel: ${{ steps.var.outputs.pkg_rel }}
3030
steps:
31-
- name: Checkout the repo
31+
- name: Checkout the repository
3232
uses: actions/checkout@v3
3333

3434
- name: Import environment variables
@@ -38,7 +38,7 @@ jobs:
3838
echo "$line" >> $GITHUB_ENV
3939
done < assets/variables
4040
41-
- name: Set env vars
41+
- name: Set job variables
4242
id: var
4343
run: . ./scripts/set-job-vars.bash
4444

@@ -58,7 +58,7 @@ jobs:
5858
PKG_VERSION: ${{ needs.check.outputs.pkg_version }}
5959
PKG_REL: ${{ needs.check.outputs.pkg_rel }}
6060
steps:
61-
- name: Checkout the repo
61+
- name: Checkout the repository
6262
uses: actions/checkout@v3
6363

6464
- name: Import environment variables
@@ -78,7 +78,8 @@ jobs:
7878
path: ${{ env.USR_HOME }}/${{ needs.check.outputs.pkg_version }}.tar.gz
7979
retention-days: 5
8080

81-
- uses: ncipollo/release-action@v1
81+
- name: Create release & upload artifacts
82+
uses: ncipollo/release-action@v1
8283
if: ${{ inputs.release }}
8384
with:
8485
tag: ${{ needs.check.outputs.pkg_version }}-${{ needs.check.outputs.pkg_rel }}

0 commit comments

Comments
 (0)