chore(deps,github-actions): bump actions/configure-pages from 4 to 5 … #1
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
name: Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- datafusion-federation/** | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
concurrency: release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo install cargo-smart-release --debug --locked | |
- uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: cargo check | |
- run: cargo changelog --execute datafusion-federation | |
- run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- env: | |
GH_TOKEN: ${{ github.token }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
run: | | |
cargo smart-release \ | |
--update-crates-index \ | |
--allow-fully-generated-changelogs \ | |
--execute \ | |
--no-changelog-preview \ | |
--allow-dirty \ | |
--verbose \ | |
datafusion-federation |