Update CHANGELOG.md for 0.52.0 release, add scripts/ instructions for ASF releases (#1479)

This commit is contained in:
Andrew Lamb 2024-11-07 11:26:57 -05:00 committed by GitHub
parent d853c35391
commit 334a5bf354
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 926 additions and 127 deletions

View file

@ -85,38 +85,3 @@ jobs:
use-tool-cache: true
- name: Test
run: cargo test --all-features
test-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
- name: Install Tarpaulin
uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: 0.14.2
use-tool-cache: true
- name: Coverage
run: cargo tarpaulin -o Lcov --output-dir ./coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
publish-crate:
if: startsWith(github.ref, 'refs/tags/v0')
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: ./.github/actions/setup-builder
- name: Publish
shell: bash
run: |
cargo publish --token ${{ secrets.CRATES_TOKEN }}