diff --git a/Dockerfile b/Dockerfile index 81abe0d..2718fc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM python:3.9-slim +FROM python:3.7-slim LABEL "com.github.actions.name"="Deploy Pelican Site to Firebase" LABEL "com.github.actions.description"="Deploy Pelican Site to Firebase" -LABEL "com.github.actions.icon"="mic" -LABEL "com.github.actions.color"="yellow" +LABEL "com.github.actions.icon"="home" +LABEL "com.github.actions.color"="red" LABEL "repository"="https://github.com/justgoodin/pelican-to-firebase" LABEL "homepage"="https://github.com/justgoodin/pelican-to-firebase" diff --git a/entrypoint.sh b/entrypoint.sh index fd4101f..ff68fac 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -28,7 +28,7 @@ git remote add deploy "$remote_repo" git checkout $remote_branch || git checkout --orphan $remote_branch git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" -if [ "$GH_PAGES_CNAME" == "none" ] +if [ "$GH_PAGES_CNAME" != "none" ] then echo "$GH_PAGES_CNAME" > CNAME fi @@ -40,4 +40,4 @@ git push deploy $remote_branch --force rm -fr .git popd -echo 'Done πŸŽ‰πŸŽ‰ πŸ•ΊπŸ’ƒ ' +echo 'Done πŸŽ‰πŸŽ‰ πŸ•ΊπŸ’ƒ ' \ No newline at end of file