Skip to content

Commit

Permalink
feat: k2pow service (#362)
Browse files Browse the repository at this point in the history
Added support to do k2pow via an external service that can be load-balanced.
  • Loading branch information
acud authored Oct 3, 2024
1 parent d6e2f51 commit 168ee31
Show file tree
Hide file tree
Showing 21 changed files with 1,790 additions and 54 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,17 @@ jobs:
path: |
target/release/post-service${{ matrix.os == 'windows-2019' && '.exe' || '' }}
if-no-files-found: error
- name: Build k2pow service
run: cargo build -p k2pow-service --release
env:
RUSTFLAGS: ${{ matrix.rustflags }}
- name: Archive k2pow service artifacts
uses: actions/upload-artifact@v4
with:
name: k2pow-service-${{ matrix.artifact-name }}
path: |
target/release/k2pow-service${{ matrix.os == 'windows-2019' && '.exe' || '' }}
if-no-files-found: error

release:
name: Publish release
Expand Down
Loading

0 comments on commit 168ee31

Please sign in to comment.