Skip to content

Commit

Permalink
fix release image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 17, 2023
1 parent be4327a commit d71995e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Build_Tapis_UI_Image
run: |
BRANCH="${{ needs.Resolve_Image_Tag.outputs.image_tag }}"
if [[ "${{ contains(needs.Resolve_Image_Tag.outputs.image_tag, 'refs/pull/') }}" ]]; then
if [ "${{ contains(needs.Resolve_Image_Tag.outputs.image_tag, 'refs/pull/') }}" == true ]; then
BRANCH=dev
fi
docker build -f Dockerfile -t tapis/tapisui:$BRANCH .
Expand Down

0 comments on commit d71995e

Please sign in to comment.