We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243c7c4 commit bcc2e41Copy full SHA for bcc2e41
.github/workflows/common-steps.yml
@@ -32,13 +32,8 @@ jobs:
32
tar -czvf ../hostctl-v${{ github.ref_name }}.tar.gz hostctl
33
tar tzvf ../hostctl-v${{ github.ref_name }}.tar.gz
34
- name: Upload tarball as release asset
35
- id: upload-release-asset
36
- uses: actions/upload-release-asset@v1
+ uses: actions/upload-artifact@v4
37
if: ${{ inputs.build-type == 'release' }}
38
- env:
39
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
with:
41
- upload_url: ${{ steps.create_release.outputs.upload_url }}
42
- asset_path: ./hostctl-v${{ github.ref_name }}.tar.gz
43
- asset_name: hostctl-v${{ github.ref_name }}.tar.gz
44
- asset_content_type: application/gzip
+ name: ./hostctl-v${{ github.ref_name }}.tar.gz
+ path: hostctl-v${{ github.ref_name }}.tar.gz
0 commit comments