Skip to content

Commit

Permalink
[fix] finalize workflow: better interpolation (#46967)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Oct 17, 2024
1 parent 2fe9eee commit 3d3f27d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/finalize_rollout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
options: ["promote", "rollback"]
jobs:
finalize_rollout:
name: Finalize connector rollout
name: Finalize connector rollout for ${{ github.event.inputs.connector_name }}
runs-on: connector-publish-large
env:
ACTION: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.action || github.event.client_payload.action }}
Expand All @@ -28,7 +28,7 @@ jobs:
shell: bash
- name: Checkout Airbyte
uses: actions/checkout@v4
- name: Promote {{ github.event.inputs.connector_name }} release candidate
- name: Promote ${{ github.event.inputs.connector_name }} release candidate
id: promote-release-candidate
if: ${{ env.ACTION == 'promote' }}
uses: ./.github/actions/run-airbyte-ci
Expand All @@ -45,7 +45,7 @@ jobs:
slack_webhook_url: ${{ secrets.PUBLISH_ON_MERGE_SLACK_WEBHOOK }}
spec_cache_gcs_credentials: ${{ secrets.SPEC_CACHE_SERVICE_ACCOUNT_KEY_PUBLISH }}
subcommand: "connectors --name=${{ github.event.inputs.connector_name }} publish --promote-release-candidate"
- name: Rollback {{ github.event.inputs.connector_name }} release candidate
- name: Rollback ${{ github.event.inputs.connector_name }} release candidate
id: rollback-release-candidate
if: ${{ env.ACTION == 'rollback' }}
uses: ./.github/actions/run-airbyte-ci
Expand Down

0 comments on commit 3d3f27d

Please sign in to comment.