From 9f7ea8922940f44d33cc5ce4515a09cb2a313db0 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Sun, 31 Oct 2021 20:28:30 +0000 Subject: [PATCH] Remove debugging outputs --- .github/workflows/tests.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2144e1c..8b8e8e0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -513,41 +513,6 @@ jobs: # # This workflow has added a `git fetch --force --tags` to every job that # needs to have working tags - # - get_tagtype: - name: Get type of Tag - if: startsWith(github.ref, 'refs/tags/') - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Fix Checkout - run: | - git fetch --force --tags - - - name: Debug data for Get Tag Type - run: | - TYPE=$(git cat-file -t $GITHUB_REF) - echo ========== - echo REF=$GITHUB_REF - echo TAGTYPE=$TYPE - echo ========== - echo git cat-file $TYPE $GITHUB_REF - git cat-file $TYPE $GITHUB_REF - echo ========== - echo ls .git/refs/heads - ls .git/refs/heads - echo ========== - echo ls .git/refs/tags - ls .git/refs/tags - echo ========== - echo git for-each-ref refs/heads - git for-each-ref refs/heads - echo ========== - echo git for-each-ref refs/tags - git for-each-ref refs/tags - upload_release: name: Upload Release Assets