Skip to content

Commit

Permalink
test13
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 committed Jan 17, 2024
1 parent 9984f17 commit 9d28e7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/smile-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if [ "$BRANCH" == "PR-116" ]; then
echo "Condition is true"
else
echo "$BRANCH"
echo "Condition is false"
fi
# calculate some variables that are used later
Expand Down Expand Up @@ -85,9 +85,9 @@ jobs:
DOCKERHUB_PUSH="false"
DOCKERHUB_README="false"
if [ "${{ github.repository }}" == "${{ env.MAIN_REPO }}" ]; then
echo "env.GITHUB_BRANCH"
echo ${BRANCH}
echo "PR-116"
if [ "${{ env.GITHUB_BRANCH }}" == "PR-116" ]; then
if [ ${BRANCH} == "PR-116" ]; then
if [ "${{ secrets.DOCKERHUB_USERNAME }}" != "" -a "${{ secrets.DOCKERHUB_PASSWORD }}" != "" ]; then
DOCKERHUB_PUSH="true"
if [ -e "README.md" ]; then
Expand Down

0 comments on commit 9d28e7b

Please sign in to comment.