From 6d7ef951b6117ea92edb6b058570ab8421b81a32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=99=95=EC=8A=B9=EC=9E=AC?= Date: Sun, 4 Feb 2024 21:49:20 +0900 Subject: [PATCH] Create appspec.yml --- .github/workflows/appspec.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/appspec.yml diff --git a/.github/workflows/appspec.yml b/.github/workflows/appspec.yml new file mode 100644 index 0000000..f483eab --- /dev/null +++ b/.github/workflows/appspec.yml @@ -0,0 +1,20 @@ +version: 0.0 +os: linux + +files: + - source: / + destination: /home/ubuntu/spring-github-action + overwrite: yes + +permissions: + - object: / + owner: ubuntu + group: ubuntu + +hooks: + AfterInstall: + - location: scripts/stop.sh + timeout: 60 + ApplicationStart: + - location: scripts/start.sh + timeout: 60