Skip to content

Commit

Permalink
I blame ChatGPT
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchTalmadge authored Nov 11, 2023
1 parent e96189e commit 24fb272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
id: get_tag_name
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" && "${{ github.event.inputs.tag }}" != "" ]]; then
echo "TAG_NAME=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
echo "TAG_NAME=${{ github.event.inputs.tag }}" >> $GITHUB_OUTPUT
else
echo "TAG_NAME=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_ENV
echo "TAG_NAME=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT
fi
- name: "Load Docker Images"
id: load_images
Expand Down

0 comments on commit 24fb272

Please sign in to comment.