diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 006e470..db20ff8 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -6,9 +6,13 @@ jobs: if: startsWith(github.ref, 'refs/heads/release/') steps: + # this *does* show the v7.7.10 release in the list - name: Somebody Kill Me run: | + echo "ALL RELEASES" curl -H "Accept: application/vnd.github.v3+json" -u "zpqrtbnk:${{secrets.MY_GITHUB_TOKEN_TESTREPO}}" https://api.github.com/repos/zpqrtbnk/test-repo/releases + echo "TAG RELEASE" + curl -H "Accept: application/vnd.github.v3+json" -u "zpqrtbnk:${{secrets.MY_GITHUB_TOKEN_TESTREPO}}" https://api.github.com/repos/zpqrtbnk/test-repo/releases/tags/v7.7.10 - name: Validate the release uses: actions/github-script@v4