-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(v0.3.0): update CHANGELOG & Cargo.toml (#14)
* build: bump alloy version * build: bump koba version to v0.3.0 * ref: apply clippy linting * feat(ci): add CI job to publish koba on crates.io * chore: add CODEOWNERS
- Loading branch information
Showing
9 changed files
with
444 additions
and
147 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @bidzyyys @qalisander @0xNeshi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: publish koba | ||
# This workflow publishes koba on crates.io. | ||
permissions: | ||
contents: read | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
env: | ||
CARGO_TERM_COLOR: always | ||
jobs: | ||
check-publish: | ||
name: Publish koba on crates.io | ||
env: | ||
KOBA_TOKEN: ${{ secrets.KOBA_TOKEN }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: "" | ||
|
||
- name: Check koba | ||
run: cargo publish -p koba --dry-run | ||
|
||
- name: Publish koba | ||
run: cargo publish -p koba --token $KOBA_TOKEN |
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
Oops, something went wrong.