We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d40b0a3 + 998af66 commit e79fbf2Copy full SHA for e79fbf2
.github/workflows/publish_binaries.yml
@@ -41,3 +41,13 @@ jobs:
41
file: target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
42
asset_name: ${{ matrix.asset_name }}
43
tag: ${{ github.ref }}
44
+ cargo-publish:
45
+ name: Publish to crates.io
46
+ runs-on: ubuntu-latest
47
+ steps:
48
+ - uses: actions/checkout@v4
49
+ - name: Install Rust
50
+ run: |
51
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
52
+ - name: Publish
53
+ run: cargo publish --token ${{ secrets.CARGO_API_TOKEN }}
0 commit comments