We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6257a commit 9951cd7Copy full SHA for 9951cd7
.github/workflows/pr-preview-release.yml
@@ -41,7 +41,6 @@ jobs:
41
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
RELEASE_TAG: "agentapi_${{ steps.pr.outputs.number }}"
43
PR_NUMBER: ${{ steps.pr.outputs.number }}
44
-
45
run: |
46
# Check if release exists
47
if gh release view "$RELEASE_TAG" --repo ${{ github.repository }} &>/dev/null; then
@@ -52,7 +51,7 @@ jobs:
52
51
gh release create "$RELEASE_TAG" ./out/* \
53
--title "$RELEASE_TAG" \
54
--notes "Preview release for PR #${PR_NUMBER}" \
55
- --repo ${{ github.repository }}
+ --repo ${{ github.repository }} \
56
--latest=false --prerelease
57
fi
58
0 commit comments