added document-upload-support to volunteers #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DockerProd Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: "self-hosted" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Deploy via Docker | |
run: | | |
docker compose down | |
docker compose rm -f | |
docker compose up --build -d |