feat: support http chunk response #6
Workflow file for this run
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: | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: build-web | |
run: make build-web | |
- name: Install target | |
run: | | |
rustup update | |
rustup target add aarch64-apple-darwin | |
rustup target add x86_64-apple-darwin | |
- name: release | |
run: | | |
cargo build --release --target=aarch64-apple-darwin | |
mv target/aarch64-apple-darwin/release/pingap ./pingap-darwin-aarch64 | |
./.github/workflows/upload_asset.sh ./pingap-darwin-aarch64 $GITHUB_TOKEN | |
cargo build --release --target=x86_64-apple-darwin | |
mv target/x86_64-apple-darwin/release/pingap ./pingap-darwin-x86 | |
./.github/workflows/upload_asset.sh ./pingap-darwin-x86 $GITHUB_TOKEN | |
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: | | |
make release | |
mv target/x86_64-unknown-linux-musl/release/pingap ./pingap-linux-x86 | |
- name: Upload Assets | |
run: | | |
./.github/workflows/upload_asset.sh ./pingap-linux-x86 $GITHUB_TOKEN | |
linux-aarch64: | |
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:aarch64-musl | |
options: -v ${{ github.workspace }}:/home/rust/src | |
run: | | |
make release | |
mv target/aarch64-unknown-linux-musl/release/pingap ./pingap-linux-aarch64 | |
- name: Upload Assets | |
run: | | |
./.github/workflows/upload_asset.sh ./pingap-linux-aarch64 $GITHUB_TOKEN |