We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e044b15 commit cce0287Copy full SHA for cce0287
1 file changed
.github/workflows/update-proxy-release.yml
@@ -29,6 +29,13 @@ jobs:
29
exit 1
30
fi
31
32
+ - name: Check that the release exists
33
+ shell: bash
34
+ env:
35
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
36
+ run: |
37
+ (gh release view --repo ${{ github.event.repository.full_name }} --json "assets" "$RELEASE_TAG" && echo "Release found.") || exit 1
38
+
39
- name: Install Node
40
uses: actions/setup-node@v4
41
0 commit comments