-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed readme and add new release pipelines
- Loading branch information
1 parent
c86b398
commit a23a42e
Showing
4 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
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,22 @@ | ||
name: Release DD Tracing Layer | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
crates: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Rust | ||
uses: hecrj/setup-rust-action@master | ||
with: | ||
rust-version: stable | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Publish to crates.io | ||
run: | | ||
cargo login ${{secrets.crates_key}} | ||
cargo publish -p dd-tracing-layer |
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
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,22 @@ | ||
name: Release NR Tracing Layer | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*-nr-tracing-layer' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
crates: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Rust | ||
uses: hecrj/setup-rust-action@master | ||
with: | ||
rust-version: stable | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Publish to crates.io | ||
run: | | ||
cargo login ${{secrets.crates_key}} | ||
cargo publish -p nr-tracing-layer |
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