Skip to content

Commit e2f0c8f

Browse files
committed
ci: rename job names to be more succint
1 parent dba8027 commit e2f0c8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
filter_builds: '(.top_attr == "packages") and (.system == "x86_64-linux" or .system == "aarch64-linux") and (.attr == "uniond" or .attr == "unionpd" or .attr == "uniond-image" or .attr == "unionpd-image")' # ensure to append this list if you want to release more artifacts
1515

16-
download-docker-images:
16+
dl-images:
1717
runs-on: ubuntu-latest
1818
needs: [build]
1919
permissions: write-all
@@ -45,7 +45,7 @@ jobs:
4545
- run: docker tag `docker images -q ${{ matrix.package }}` ghcr.io/unionfi/${{ matrix.package }}:${{ github.ref_name }}-${{ matrix.system }}
4646
- run: docker push ghcr.io/unionfi/${{ matrix.package }}:${{ github.ref_name }}-${{ matrix.system }}
4747

48-
download-static-binaries:
48+
dl-bins:
4949
runs-on: ubuntu-latest
5050
needs: [build]
5151
permissions: write-all
@@ -96,9 +96,9 @@ jobs:
9696
name: ${{ matrix.package }}-${{ matrix.system }}
9797
path: ${{ matrix.package }}-${{ matrix.system }}
9898

99-
create-docker-manifest:
99+
docker-manifest:
100100
runs-on: ubuntu-latest
101-
needs: [download-docker-images]
101+
needs: [ dl-images ]
102102
permissions: write-all
103103
strategy:
104104
matrix:
@@ -120,7 +120,7 @@ jobs:
120120

121121
release:
122122
runs-on: ubuntu-latest
123-
needs: [create-docker-manifest, download-static-binaries]
123+
needs: [ docker-manifest, dl-bins ]
124124
permissions: write-all
125125
steps:
126126
- uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)