Skip to content

Commit

Permalink
Update build-publish.yml (#2)
Browse files Browse the repository at this point in the history
* Update build-publish.yml

* Update build-publish.yml
  • Loading branch information
durch committed Sep 14, 2023
1 parent 123e693 commit 63ec836
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and publish mixnode
name: Build and publish mixnode, gateway, network-requester

on:
workflow_dispatch:
Expand All @@ -9,7 +9,7 @@ on:
default: develop

jobs:
build:
build-publish:
runs-on: [ self-hosted, custom-linux ]
# Enable sccache via environment variable
env:
Expand All @@ -36,12 +36,27 @@ jobs:
- name: Build all binaries
uses: actions-rs/cargo@v1
with:
command: build --release
args: --workspace
command: build
args: --release --workspace

- name: Upload Artifact
- name: nym-mixnode
uses: actions/upload-artifact@v3
with:
name: nym-mixnode
path: target/release/nym-mixnode
retention-days: 1

- name: nym-gateway
uses: actions/upload-artifact@v3
with:
name: nym-gateway
path: target/release/nym-gateway
retention-days: 1

- name: nym-network-requester
uses: actions/upload-artifact@v3
with:
name: nym-network-requester
path: target/release/nym-network-requester
retention-days: 1

0 comments on commit 63ec836

Please sign in to comment.