Skip to content

Commit 168ee31

Browse files
authored
feat: k2pow service (#362)
Added support to do k2pow via an external service that can be load-balanced.
1 parent d6e2f51 commit 168ee31

File tree

21 files changed

+1790
-54
lines changed

21 files changed

+1790
-54
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,17 @@ jobs:
228228
path: |
229229
target/release/post-service${{ matrix.os == 'windows-2019' && '.exe' || '' }}
230230
if-no-files-found: error
231+
- name: Build k2pow service
232+
run: cargo build -p k2pow-service --release
233+
env:
234+
RUSTFLAGS: ${{ matrix.rustflags }}
235+
- name: Archive k2pow service artifacts
236+
uses: actions/upload-artifact@v4
237+
with:
238+
name: k2pow-service-${{ matrix.artifact-name }}
239+
path: |
240+
target/release/k2pow-service${{ matrix.os == 'windows-2019' && '.exe' || '' }}
241+
if-no-files-found: error
231242

232243
release:
233244
name: Publish release

0 commit comments

Comments
 (0)