Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit d2e0b63

Browse files
authored
ci: remove release output (#575)
1 parent 55cf0ce commit d2e0b63

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
make tests_only
4242
release-please:
4343
needs: test
44+
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase' }}
4445
runs-on: ubuntu-latest
4546
name: "Bump version and create changelog"
4647
permissions:
@@ -52,25 +53,6 @@ jobs:
5253
id: release
5354
with:
5455
target-branch: ${{ github.ref_name }}
55-
56-
- if: ${{ steps.release.outputs }}
57-
id: versions
58-
run: |
59-
set -ex
60-
61-
MAIN_RELEASE_VERSION=${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}
62-
RELEASE_VERSION="$MAIN_RELEASE_VERSION"
63-
RELEASE_NAME="v$RELEASE_VERSION"
64-
RELEASE_CREATED='${{ steps.release.outputs.release_created }}'
65-
PRS_CREATED='${{ steps.release.outputs.prs_created }}'
66-
PR_TITLE='${{ github.event.head_commit.message }}'
67-
68-
echo "MAIN_RELEASE_VERSION=${MAIN_RELEASE_VERSION}" >> "${GITHUB_OUTPUT}"
69-
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> "${GITHUB_OUTPUT}"
70-
echo "RELEASE_CREATED=${RELEASE_CREATED}" >> "${GITHUB_OUTPUT}"
71-
echo "RELEASE_NAME=${RELEASE_NAME}" >> "${GITHUB_OUTPUT}"
72-
echo "PRS_CREATED=${PRS_CREATED}" >> "${GITHUB_OUTPUT}"
73-
echo "PR_TITLE=${PR_TITLE}" >> "${GITHUB_OUTPUT}"
7456
publish:
7557
needs: release-please
7658
if: ${{ startsWith(github.event.head_commit.message, 'chore(main)') && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase' }}

0 commit comments

Comments
 (0)