We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a4570 commit 56df16cCopy full SHA for 56df16c
1 file changed
.github/workflows/release-kbcli.yml
@@ -38,6 +38,18 @@ jobs:
38
name: Upload and release kbcli
39
runs-on: ubuntu-22.04
40
steps:
41
+ - name: Free disk space
42
+ run: |
43
+ df -h
44
+ echo "free disk space"
45
+ sudo apt-get autoremove -y >/dev/null 2>&1
46
+ sudo apt-get autoclean -y >/dev/null 2>&1
47
+ sudo rm -rf /usr/local/lib/android >/dev/null 2>&1
48
+ docker rmi $(docker image ls -aq) >/dev/null 2>&1
49
+ sudo swapoff -a
50
+ sudo rm -f /swapfile
51
52
+
53
- uses: actions/checkout@v4
54
- name: install lib
55
run: |
@@ -70,6 +82,7 @@ jobs:
70
82
71
83
- name: upload .rpm and .deb to fury.io
72
84
85
73
86
for file in $(find "${{ github.workspace }}/dist" -type f | grep -E '\.(deb|rpm)$'); do
74
87
echo "Processing file: $file"
75
88
curl -F package=@$file https://${{ env.FURY_TOKEN }}@push.fury.io/${{ env.FURY_ACCOUNT }}/
0 commit comments