Skip to content

Commit 5cb6c06

Browse files
committed
feat: initial commit
0 parents  commit 5cb6c06

23 files changed

Lines changed: 4427 additions & 0 deletions

.github/workflows/release.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
jobs:
13+
14+
# Release unpublished packages.
15+
release-plz-release:
16+
name: Release-plz release
17+
runs-on: ubuntu-latest
18+
if: ${{ github.repository_owner == 'liamwh' }}
19+
permissions:
20+
contents: write
21+
steps:
22+
- name: Checkout repository
23+
uses: actions/checkout@v4
24+
with:
25+
fetch-depth: 0
26+
- name: Install Rust toolchain
27+
uses: dtolnay/rust-toolchain@stable
28+
- name: Run release-plz
29+
uses: release-plz/action@v0.5
30+
with:
31+
command: release
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
35+
36+
# Create a PR with the new versions and changelog, preparing the next release.
37+
release-plz-pr:
38+
name: Release-plz PR
39+
runs-on: ubuntu-latest
40+
if: ${{ github.repository_owner == 'liamwh' }}
41+
permissions:
42+
contents: write
43+
pull-requests: write
44+
concurrency:
45+
group: release-plz-${{ github.ref }}
46+
cancel-in-progress: false
47+
steps:
48+
- name: Checkout repository
49+
uses: actions/checkout@v4
50+
with:
51+
fetch-depth: 0
52+
- name: Install Rust toolchain
53+
uses: dtolnay/rust-toolchain@stable
54+
- name: Run release-plz
55+
uses: release-plz/action@v0.5
56+
with:
57+
command: release-pr
58+
env:
59+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
target
2+
target/*
3+
Cargo.locks
4+
node_modules/
5+
.husky/_/
6+
.DS_Store
7+
.cursor/rules
8+
9+
# Ignore go.work
10+
*.work
11+
go.work.sum
12+
13+
# Ignore local DB files
14+
*.db
15+
*.db-*
16+
17+
# Ignore stubs created by policy_evaluation.proto
18+
dev.azure.com/
19+
20+
# Logs
21+
logs
22+
*.log
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
pnpm-debug.log*
27+
lerna-debug.log*
28+
29+
dist
30+
dist-ssr
31+
*.local
32+
33+
# Editor directories and files
34+
**/*.venv/*
35+
**/*.vscode/*
36+
!.vscode/extensions.json
37+
!.vscode/settings.json
38+
.idea
39+
.DS_Store
40+
*.suo
41+
*.ntvs*
42+
*.njsproj
43+
*.sln
44+
*.sw?
45+
**/*.env
46+
47+
build_rs_cov.profraw
48+
49+
coverage/*
50+
# Used in coverage files
51+
coverage.out
52+
53+
/build
54+
/.svelte-kit
55+
**/.svelte-kit/tsconfig.json
56+
/package
57+
!bin/alphaquant/cmd/alphaquant/env.example
58+
59+
/docs/guide/book
60+
61+
docker/**/data
62+
deployment/openshift/volumes/**/data
63+
64+
**/*.key
65+
66+
**/lcov.info
67+
**/tempo-data

0 commit comments

Comments
 (0)