Skip to content

Commit

Permalink
fix: pass requested release tag to action (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoo1984 authored Jan 27, 2024
1 parent 232a351 commit f7c2bb3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on:
workflow_dispatch:
inputs:
release_tag:
description: 'Release tag version to deploy to production'
description: 'Release tag version to deploy to production (defaults to latest)'
required: false
type: string

Expand All @@ -17,6 +17,8 @@ jobs:
- name: Get latest or specified release
uses: chanzuckerberg/czid-graphql-federation-server/.github/actions/get-release-tag@main
id: get-release
with:
requested_release_tag: ${{ github.event.inputs.release_tag || '' }}

deploy-to-prod-env:
needs: get-release-tag
Expand Down

0 comments on commit f7c2bb3

Please sign in to comment.