Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/ami-release-nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
tag_name: ${{ env.RELEASE_TAG }}
target_commitish: ${{ github.sha }}

- name: Create CLI tag for PG 17
- name: Create CLI tag for PG 17 & Trigger Release
if: matrix.postgres_version == '17' && matrix.target.arch == 'arm64' && github.event_name != 'workflow_dispatch'
env:
GH_TOKEN: ${{ github.token }}
Expand All @@ -214,12 +214,7 @@ jobs:
git tag "${CLI_TAG}" "${{ github.sha }}"
git push origin "${CLI_TAG}"

- name: Trigger CLI release workflow for PG 17
if: matrix.postgres_version == '17' && github.event_name != 'workflow_dispatch'
env:
GH_TOKEN: ${{ github.token }}
run: |
CLI_TAG="v${POSTGRES_SUPABASE_VERSION}-cli"
echo "Triggering Release Workflow: ${CLI_TAG}"
gh workflow run cli-release.yml \
--ref "${CLI_TAG}" \
-f version="${CLI_TAG}"
Expand Down
Loading