From aa584554cf86d1bba34a725664f42caea5b0c3f1 Mon Sep 17 00:00:00 2001 From: Josh Branham Date: Thu, 10 Mar 2022 15:59:01 -0500 Subject: [PATCH] Delete release.yml (#5) --- .github/workflows/release.yml | 29 ----------------------------- 1 file changed, 29 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 c10a46e..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Release - -on: - check_suite: - types: [completed] - -jobs: - release: - name: Check and Release New Version - runs-on: ubuntu-latest - # `github.ref` from the `check_suite` trigger is always the default branch - if: format('refs/heads/{0}', github.event.check_suite.head_branch) == github.ref && github.event.check_suite.conclusion == 'success' - steps: - - name: Checkout Code - uses: actions/checkout@v2 - with: - fetch-depth: 2 - - - name: Setup Ruby - uses: actions/setup-ruby@v1 - with: - ruby-version: 2.6 - - - name: Release Gem - id: release-gem - uses: salsify/action-release-gem@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}