From e31e08d28e4990f5a57145632fb0875023a4ff92 Mon Sep 17 00:00:00 2001 From: hozan23 Date: Mon, 2 Sep 2024 14:19:41 +0200 Subject: [PATCH] remove github release workflow --- .github/workflows/release.yml | 41 ----------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 6944daf..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,41 +0,0 @@ -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