feat: support admin node #147
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "publish" | |
on: | |
push: | |
# tags: ["v[0-9]+.[0-9]+.[0-9]+*"] | |
branches: [main] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
CARGO_TERM_COLOR: always | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
- name: build-web | |
run: make build-web | |
- name: release | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: messense/rust-musl-cross:x86_64-musl | |
options: -v ${{ github.workspace }}:/home/rust/src | |
run: | | |
apt-get update | |
apt-get install protobuf-compiler -y | |
rustc --version | |
cargo --version | |
make test | |
make bench | |
make release | |
ls -lh target/x86_64-unknown-linux-musl/release |