We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cfabfa commit 57ae8b2Copy full SHA for 57ae8b2
.github/workflows/release.yml
@@ -47,13 +47,13 @@ jobs:
47
echo "sha256sum:"
48
cat ghostferry-$GITHUB_SHA.sha256sum
49
50
- - name: Releasing Ghostferry to Github
+ - name: Releasing production Ghostferry
51
if: ${{ github.ref_type == "branch" && github.ref_name == "main" }}
52
run: gh release create release-${GITHUB_SHA::7} --target ${{ github.ref_name }} --prerelease ghostferry*
53
env:
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
56
+ - name: Releasing canary Ghostferry
57
if: ${{ github.ref_type == "tag" && startsWith(github.ref_name, "canary/") }}
58
run: gh release create ${{github.ref_name}} --prerelease --verify-tag --notes-from-tag --latest=false ghostferry*
59
0 commit comments