Skip to content

Commit acf30af

Browse files
authored
Update build-claws-mail-binary.yml
1 parent b45fe2a commit acf30af

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/build-claws-mail-binary.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
sudo apt-get update
2121
sudo apt-get install -y \
22-
build-essential curl tar pkg-config \
22+
build-essential curl tar pkg-config zip \
2323
git wget patchelf \
2424
libetpan-dev libgnutls28-dev \
2525
libarchive-dev \
@@ -139,17 +139,20 @@ jobs:
139139
chmod +x claws-mail
140140
cat claws-mail
141141
142-
- name: Create tarball with binary and libraries
142+
- name: Create zip file with binary and libraries
143143
run: |
144144
cd ~/claws-mail-install
145-
tar -czf ~/claws-mail-4.3.0-void-bundled.tar.gz .
145+
zip -r ~/claws-mail-4.3.0-void-bundled.zip .
146+
147+
- name: Generate SHA256 checksum
148+
run: |
149+
sha256sum ~/claws-mail-4.3.0-void-bundled.zip > ~/claws-mail-4.3.0-void-bundled.zip.sha256
150+
cat ~/claws-mail-4.3.0-void-bundled.zip.sha256
146151
147152
- name: Upload binary artifact
148153
uses: actions/upload-artifact@v4
149154
with:
150155
name: claws-mail-void-bundled
151-
path: ~/claws-mail-4.3.0-void-bundled.tar.gz
152-
153-
- name: Display SHA256 checksum
154-
run: |
155-
sha256sum ~/claws-mail-4.3.0-void-bundled.tar.gz
156+
path: |
157+
~/claws-mail-4.3.0-void-bundled.zip
158+
~/claws-mail-4.3.0-void-bundled.zip.sha256

0 commit comments

Comments
 (0)