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 4999ab0 commit f70bc90Copy full SHA for f70bc90
.github/workflows/common-steps.yml
@@ -29,11 +29,9 @@ jobs:
29
target/release/hostctl generate-completions zsh > release/hostctl/misc/hostctl_zsh_completion.sh
30
target/release/hostctl generate-completions fish > release/hostctl/misc/hostctl_fish_completion.sh
31
cd release
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
- uses: actions/upload-artifact@v4
+ - name: Create release and upload it
+ uses: ncipollo/release-action@v1
36
if: ${{ inputs.build-type == 'release' }}
37
with:
38
- name: release-v${{ github.ref_name }}
39
- path: hostctl-v${{ github.ref_name }}.tar.gz
+ artifacts: "hostctl-v${{ github.ref_name }}.tar.gz"
0 commit comments