First try for automatic deployment
This commit is contained in:
parent
711dea55b4
commit
45e3eea773
|
@ -11,3 +11,15 @@ jobs:
|
|||
with:
|
||||
name: documentation
|
||||
path: doc/out/
|
||||
deploy:
|
||||
needs: build-doc
|
||||
runs-on: docker
|
||||
container:
|
||||
image: git.tkolb.de/amateurfunk/hamnet70/asciidoctor:1.4
|
||||
steps:
|
||||
- run: mkdir ~/.ssh && echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_ed25519 && chmod 0600 ~/.ssh/id_ed25519 && echo "${{ secrets.SSH_KNOWN_HOST }}" > ~/.ssh/known_hosts
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: documentation
|
||||
- run: ls -lah
|
||||
- run: rsync -e "ssh -p 2342" ./ tkolb.de:/var/www/0fm.de
|
||||
|
|
Loading…
Reference in a new issue