diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ce841bb..f8b9b78 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -37,4 +37,14 @@ jobs: # Code coverage - name: Upload code coverage report - uses: codecov/codecov-action@v1 \ No newline at end of file + uses: codecov/codecov-action@v1 + + # Archive + - name: Prepare artifacts + run: mvn clean package -Dmaven.test.skip=true + + - name: Archive artifacts + uses: actions/upload-artifact@v2 + with: + name: krokodil-app + path: ./target/krokodil-*.jar \ No newline at end of file diff --git a/.gitignore b/.gitignore index b2415ea..8896f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,5 @@ build/ .vscode/ ### Not so secret secrets ### -*.secret \ No newline at end of file +*.secret +*.pem \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 5f36c06..6256f76 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1,2 @@ spring.mvc.view.suffix=.html +server.port=80 \ No newline at end of file diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css new file mode 100644 index 0000000..e69de29 diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 41e9b11..c3558dc 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -2,9 +2,16 @@
-Hello, World!
+