-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: create toggle maintenance mode
- Loading branch information
Showing
2 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Toggle Maintenance Mode in Lambda | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: Who to greet | ||
default: Allen | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
toggle-maintenance-mode: | ||
name: Toggle maintenance mode | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure php 8.3 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.3 | ||
coverage: none | ||
|
||
- name: Install php packages | ||
run: composer install --prefer-dist --optimize-autoloader --no-dev | ||
|
||
- name: Set up node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '21' | ||
|
||
- name: Install javascript packages and build the frontend assets | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: arn:aws:iam::154471991214:role/github_action | ||
aws-region: us-west-2 | ||
|
||
- name: Toggle maintenance mode | ||
run: | | ||
npm install serverless serverless-lift | ||
MAINTENANCE_MODE=$(aws lambda get-function-configuration \ | ||
--function-name docfunc-production-web \ | ||
--region us-west-2 | jq -r '.Environment.Variables.MAINTENANCE_MODE') | ||
if [[ ${MAINTENANCE_MODE} == 0 ]]; then | ||
node_modules/.bin/serverless deploy function --function=web --update-config --param="maintenance=1" | ||
node_modules/.bin/serverless deploy function --function=artisan --update-config --param="maintenance=1" | ||
echo "Maintenance mode is ENABLE" | ||
elif [[ ${MAINTENANCE_MODE} == 1 ]]; then | ||
node_modules/.bin/serverless deploy function --function=web --update-config --param="maintenance=0" | ||
node_modules/.bin/serverless deploy function --function=artisan --update-config --param="maintenance=0" | ||
echo "Maintenance mode is DISABLE" | ||
else | ||
echo 'MAINTENANCE_MODE must be 1 or 0' | ||
exit 1 | ||
fi |