1
0
mirror of https://github.com/coalaura/ffwebp.git synced 2025-09-09 06:19:55 +00:00

embed icon

This commit is contained in:
Laura
2025-06-19 17:28:33 +02:00
parent 95b1cb38b5
commit 4dc203e1f5
3 changed files with 123 additions and 0 deletions

View File

@@ -28,6 +28,20 @@ jobs:
with:
go-version: '1.23.1'
- name: Generate Windows resources
if: matrix.goos == 'windows'
run: |
go install github.com/tc-hib/go-winres@latest
go-winres simply \
--manifest cli \
--product-name FFWebP \
--original-filename ffwebp.exe \
--icon logo.ico \
--copyright "(c) 2025 coalaura" \
--file-description "Convert any image format into any other image format" \
--file-version "${{ github.ref_name }}" \
--arch "${{ matrix.goarch }}"
- name: Build ${{ matrix.goos }}_${{ matrix.goarch }} (${{
matrix.flavour }})
shell: bash