Skip to content

Commit 0378714

Browse files
author
yosebyte
authored
Introduce Nowhere protocol
1 parent cdc3911 commit 0378714

72 files changed

Lines changed: 9915 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags: [ 'v*.*.*' ]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
release:
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
target:
16+
- x86_64-unknown-linux-gnu
17+
- aarch64-unknown-linux-gnu
18+
- x86_64-unknown-linux-musl
19+
- aarch64-unknown-linux-musl
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v6
23+
- uses: dtolnay/rust-toolchain@stable
24+
- uses: taiki-e/install-action@cross
25+
- name: Build and package
26+
shell: bash
27+
run: |
28+
cross build --release --locked --target ${{ matrix.target }}
29+
tar -czf "nowhere-${{ matrix.target }}.tar.gz" \
30+
-C "target/${{ matrix.target }}/release" nowhere
31+
- uses: softprops/action-gh-release@v3
32+
with:
33+
files: nowhere-*.tar.gz

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
/target

0 commit comments

Comments
 (0)