Skip to content

Commit a5fee93

Browse files
committed
Improve step names for GHA readability
1 parent a14a356 commit a5fee93

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-container.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ jobs:
2828
repo: ['development', 'testing', 'release']
2929
steps:
3030

31-
- name: checkout compute-entrypoint
32-
uses: actions/checkout@v2
31+
- uses: actions/checkout@v2
3332

3433
- name: Cache base image
3534
uses: actions/cache@v2
3635
with:
3736
path: /tmp/.buildx-cache
3837
key: base-${{ matrix.repo }}-buildx-${{ github.sha }}
3938

40-
- id: generate-tag-list
39+
- name: Generate tag list
40+
id: generate-tag-list
4141
env:
4242
REPO: ${{ matrix.repo }}
4343
run: |
@@ -66,16 +66,16 @@ jobs:
6666
image: ['hosted-ce', 'osg-ce-condor']
6767
steps:
6868

69-
- name: checkout compute-entrypoint
70-
uses: actions/checkout@v2
69+
- uses: actions/checkout@v2
7170

7271
- name: Load cached base image
7372
uses: actions/cache@v2
7473
with:
7574
path: /tmp/.buildx-cache
7675
key: base-${{ matrix.repo }}-buildx-${{ github.sha }}
7776

78-
- id: generate-tag-list
77+
- name: Generate tag list
78+
id: generate-tag-list
7979
env:
8080
REPO: ${{ matrix.repo }}
8181
IMAGE: ${{ matrix.image }}

0 commit comments

Comments
 (0)