Skip to content

Commit

Permalink
add embedding_tools to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbasPL committed Sep 29, 2023
1 parent bd69173 commit bb3009c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
with:
configurePreset: x64-windows
buildPreset: Release

- name: ZIP embedding tools
working-directory: build/bin/Release
run: |
7z a -tzip -mx=9 -r embedding_tools.zip fumo_encoder.exe fumo_generator.exe initial_loader.bin stage1.dll
- name: Publish release (version tag)
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -32,7 +37,9 @@ jobs:
prerelease: false
draft: true
files: |
build/bin/Release/*.exe
build/bin/Release/fumo.exe
build/bin/Release/fumo_encoder.exe
build/bin/Release/embedding_tools.zip
- name: Publish pre-release (push to master)
if: github.ref == 'refs/heads/master'
Expand All @@ -43,4 +50,6 @@ jobs:
title: Development build
prerelease: true
files: |
build/bin/Release/*.exe
build/bin/Release/fumo.exe
build/bin/Release/fumo_encoder.exe
build/bin/Release/embedding_tools.zip

0 comments on commit bb3009c

Please sign in to comment.