Skip to content

Commit

Permalink
Remove unused step IDs from release workflow
Browse files Browse the repository at this point in the history
There were quite some workflow steps that declared otherwise unused IDs.
Some of them were duplicate, which is illegal for a workflow. Remove all
of the unused IDs, so that it is less likely that they get copied around
verbatim when adding new steps.

Fixes: 51a9263 ("Signing k0s binaries with cosign")
Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Jan 23, 2024
1 parent 7e7fbcb commit 7d8cc49
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ jobs:
/k0s/k0s --output-file /k0s/k0s.sig
- name: Upload Release Assets - Binary
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -106,7 +105,6 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Release Assets - Signature
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -121,7 +119,6 @@ jobs:
path: ./k0s

- name: Upload Release Assets - Bundle
id: upload-release-asset-images
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down Expand Up @@ -184,7 +181,6 @@ jobs:
docker system prune --all --volumes --force
- name: Upload Release Assets
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -193,7 +189,6 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Release Assets - Signature
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down Expand Up @@ -272,7 +267,6 @@ jobs:
path: tests/*.log

- name: Upload Release Assets - Binary
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -281,7 +275,6 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Release Assets - Signature
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -296,7 +289,6 @@ jobs:
path: ./k0s

- name: Upload Release Assets - Bundle
id: upload-release-asset-images
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down Expand Up @@ -380,7 +372,6 @@ jobs:
path: tests/*.log

- name: Upload Release Assets - Binary
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -389,7 +380,6 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Release Assets - Signature
id: upload-release-asset
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand All @@ -404,7 +394,6 @@ jobs:
path: ./k0s

- name: Upload Release Assets - Bundle
id: upload-release-asset-images
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down Expand Up @@ -537,7 +526,6 @@ jobs:
make sign-pub-key
- name: Upload Release Assets - SBOM
id: upload-release-asset-images
uses: shogo82148/[email protected]
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down Expand Up @@ -610,7 +598,6 @@ jobs:
terraform apply -auto-approve
- name: Create k0s Cluster using k0sctl
id: k0sctl
run: |
# download k0sctl
curl --silent -L "https://github.com/k0sproject/k0sctl/releases/download/${K0SCTL_VERSION}/k0sctl-linux-x64" -o k0sctl
Expand Down

0 comments on commit 7d8cc49

Please sign in to comment.