Skip to content

Commit cfb1867

Browse files
Clean up release CI
Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent b44556d commit cfb1867

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# workflow to release assets as part of the release
2-
name: Upload Release Asset
1+
name: Release Workflow
32
on:
43
push:
54
tags:
@@ -27,13 +26,6 @@ jobs:
2726
go-version: "${{ env.GO_VERSION }}"
2827
cache: true
2928

30-
- name: Log in to the Container registry
31-
uses: docker/login-action@v3
32-
with:
33-
registry: ${{ env.REGISTRY }}
34-
username: ${{ github.actor }}
35-
password: ${{ secrets.GITHUB_TOKEN }}
36-
3729
- name: Build and push image
3830
run: make image-build-push
3931
env:
@@ -45,14 +37,15 @@ jobs:
4537
needs:
4638
- build-image
4739
steps:
48-
- uses: actions/checkout@v5
40+
- name: Checkout code
41+
uses: actions/checkout@v5
4942

5043
- uses: actions/setup-go@v6
5144
with:
5245
go-version: "${{ env.GO_VERSION }}"
5346
cache: true
5447

55-
- name: manifest
48+
- name: Create manifests
5649
run: make release
5750

5851
- name: Generate Release Notes
@@ -66,7 +59,7 @@ jobs:
6659
OWNER: ${{ github.repository_owner }}
6760
REPO: ${{ github.event.repository.name }}
6861

69-
- name: Create Release
62+
- name: Create GitHub Release
7063
id: create_release
7164
uses: softprops/action-gh-release@v2
7265
env:

0 commit comments

Comments
 (0)