diff --git a/document.html b/document.html
new file mode 100644
index 00000000..865fb352
--- /dev/null
+++ b/document.html
@@ -0,0 +1,19 @@
+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"