diff --git a/index.html b/index.html index fe61a15f..cd52a4e7 100644 --- a/index.html +++ b/index.html @@ -1,28 +1,19 @@ - -
-
-
- |
-
-Sample "Hello, World" Application-This is the home page for a sample application used to illustrate the -source directory organization of a web application utilizing the principles -outlined in the Application Developer's Guide. - |
-
To prove that they work, you can execute either of the following links: -
- - - +name: Industrialisation continue sur le serveur AWS (Tomcat) +on: push +jobs: + Deploy: + name: Deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - run: | + jar cvf boris.war * + - name: copy file via ssh password + uses: appleboy/scp-action@master + with: + host: ${{ secrets.HOST_DNS }} + username: ${{ secrets.USERNAME }} + key: ${{ secrets.EC2_SSH_KEY }} + port: ${{ secrets.DEPLOY_PORT }} + source: "boris.war" + target: "/opt/tomcat/webapps"