From ec67b17715e4f6747870fe1ae868c7ce04e0d0d5 Mon Sep 17 00:00:00 2001 From: Narthana Epa Date: Sat, 1 Jun 2024 06:34:04 +1000 Subject: [PATCH] Delete release-plz GHA It's not capable of running on forks. --- .github/workflows/release-plz.yml | 57 ------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/release-plz.yml diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml deleted file mode 100644 index 3bf41d5ab8..0000000000 --- a/.github/workflows/release-plz.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: release-plz - -permissions: - pull-requests: write - contents: write - -on: - workflow_dispatch: - push: - branches: - - main - schedule: - - cron: "0 0 * * *" - -concurrency: - group: release-plz - -env: - MISE_EXPERIMENTAL: 1 - -jobs: - release-plz: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }} - - uses: crazy-max/ghaction-import-gpg@v6 - with: - gpg_private_key: ${{ secrets.MISE_GPG_KEY }} - git_user_signingkey: true - git_commit_gpgsign: true - git_tag_gpgsign: true - - uses: actions-rust-lang/setup-rust-toolchain@v1 - with: { toolchain: nightly, components: rustfmt } - - uses: actions-rust-lang/setup-rust-toolchain@v1 - - run: mkdir -p "$HOME/bin" && echo "$HOME/bin" >> "$GITHUB_PATH" - - run: cargo build --all-features && cp target/debug/mise "$HOME"/bin - - uses: actions/cache/restore@v4 - with: - path: | - ~/.local/share/mise/installs - ~/.local/share/mise/plugins - key: mise-tools-${{ hashFiles('.mise.toml') }} - restore-keys: mise-tools - - run: mise install - - run: | - set -euxo pipefail - rm -rf registry - git clone https://github.com/mise-plugins/registry - rm -rf registry/.git - git add registry - - run: mise run release-plz - env: - GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }} - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}