Skip to content

Commit 244a483

Browse files
authored
Merge pull request #1 from psaux-it/v2.0.9
blue-note
2 parents 0ff2826 + a6382e4 commit 244a483

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ export NPP_GID_=33749
5151
export NPP_PLUGINS_="fastcgi-cache-purge-and-preload-nginx"
5252

5353
# Default Theme
54-
export NPP_THEMES_=""
54+
export NPP_THEMES_="blue-note"

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ on:
44
pull_request_target:
55
types:
66
- closed
7+
workflow_dispatch:
78

89
env:
910
REGISTRY: ghcr.io
1011
IMAGE_NAME: ${{ github.repository }}
1112

1213
jobs:
1314
build:
14-
if: github.event.pull_request.merged == true
15+
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
1516
runs-on: ubuntu-latest
1617
permissions:
1718
contents: read

nginx/entrypoint-nginx.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ wait_for_service() {
4848
exit 1
4949
fi
5050
echo -e "${COLOR_YELLOW}${COLOR_BOLD}NPP-NGINX:${COLOR_RESET} Waiting for ${COLOR_CYAN}${host}:${port}${COLOR_RESET} to become available..."
51-
sleep "$wait_time"
51+
sleep "${wait_time}"
5252
retries=$((retries - 1))
5353
done
5454

@@ -90,6 +90,8 @@ else
9090
echo -e "${COLOR_GREEN}${COLOR_BOLD}NPP-NGINX:${COLOR_RESET} User ${COLOR_LIGHT_CYAN}${NGINX_WEB_USER}${COLOR_RESET} is already in group ${COLOR_LIGHT_CYAN}${NPP_USER}${COLOR_RESET} Skipping.."
9191
fi
9292

93+
sleep 3
94+
9395
# Congratulatory Header
9496
echo -e "\n${COLOR_YELLOW}${COLOR_BOLD}🎉 CONGRATULATIONS! 🎉${COLOR_RESET}"
9597
echo -e "${COLOR_GREEN}${COLOR_BOLD}Your docker stack is ready, Unlocked Ultra-Performance with NPP Plugin${COLOR_RESET}"

0 commit comments

Comments
 (0)