Skip to content

Commit

Permalink
fix workflow lint error
Browse files Browse the repository at this point in the history
Signed-off-by: Daisuke Sato <[email protected]>
  • Loading branch information
daisukes committed Apr 10, 2024
1 parent c62a474 commit 0088f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
run: |
docker login -u daisukesato80 -p "$DOCKERHUB_TOKEN"
if [[ ${{ inputs.push-sha}} = "true" ]]; then
./manage-docker-image.sh -a tag -i ${{ inputs.push-name }} -o cmucal -t ${GITHUB_REF_NAME}-${SHORT_SHA}
./manage-docker-image.sh -a push -i ${{ inputs.push-name }} -o cmucal -t ${GITHUB_REF_NAME}-${SHORT_SHA}
./manage-docker-image.sh -a tag -i ${{ inputs.push-name }} -o cmucal -t "${GITHUB_REF_NAME}-${SHORT_SHA}"
./manage-docker-image.sh -a push -i ${{ inputs.push-name }} -o cmucal -t "${GITHUB_REF_NAME}-${SHORT_SHA}"
fi
./manage-docker-image.sh -a tag -i ${{ inputs.push-name }} -o cmucal -t ${{ inputs.tag-name }}
./manage-docker-image.sh -a push -i ${{ inputs.push-name }} -o cmucal -t ${{ inputs.tag-name }}

0 comments on commit 0088f09

Please sign in to comment.