Skip to content

Commit 78b6e5b

Browse files
committed
init
0 parents  commit 78b6e5b

13 files changed

Lines changed: 3218 additions & 0 deletions

File tree

.cargo/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[build]
2+
rustflags = ["-Ctarget-cpu=native"]
3+
4+
[registries.crates-io]
5+
protocol = "sparse"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build & Release on Tag
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
build-and-release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v5
12+
- uses: dtolnay/rust-toolchain@master
13+
with:
14+
toolchain: stable
15+
- uses: Swatinem/rust-cache@v2
16+
with:
17+
key: stable
18+
- name: Build release
19+
run: cargo build --release
20+
- name: Upload release binary as artifact
21+
uses: actions/upload-artifact@v4
22+
with:
23+
name: opusify
24+
path: target/release/opusify
25+
- name: Create GitHub Release & Upload Asset
26+
uses: softprops/action-gh-release@v2
27+
with:
28+
files: target/release/opusify
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/target
2+
3+
opus-parquet/
4+
wav-parquet/

0 commit comments

Comments
 (0)