From 65d324d2d703296b8c9872063a8733ce34d69fd4 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Thu, 8 Aug 2024 08:31:42 +0200 Subject: [PATCH] fix(ci): remove deprecated release (#186) --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81704c8..a2c0904 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,19 +108,9 @@ jobs: - format runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v4 + - uses: googleapis/release-please-action@v4 id: release with: + token: ${{ secrets.GITHUB_TOKEN }} release-type: simple package-name: zenbones.nvim - - uses: actions/checkout@v4 - - name: tag stable versions - if: ${{ steps.release.outputs.release_created }} - run: | - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" - git tag -d stable || true - git push origin :stable || true - git tag -a stable -m "Last Stable Release" - git push origin stable