Skip to content

Commit

Permalink
Parse release version from env var
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpetrovic committed Apr 9, 2024
1 parent cebb054 commit c0f6a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if [[ ! -z "${{ inputs.app_version }}" ]]; then
echo "app_version=${{ inputs.app_version }}" >> $GITHUB_OUTPUT
else
echo "app_version=${{ github.ref_name }}" >> $GITHUB_OUTPUT
echo "app_version=${GITHUB_REF#gateway-}" >> $GITHUB_OUTPUT
fi
- name: Configure AWS credentials
Expand Down

0 comments on commit c0f6a17

Please sign in to comment.