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