header.html: I was promoted, long ago, so reflect that... #88
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: Deploy | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Deploy via scp | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- name: Upload to server via scp | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SCPHOST }} | |
username: ${{ secrets.SCPUSERNAME }} | |
port: ${{ secrets.SCPPORT }} | |
key: ${{ secrets.SCPKEY }} | |
source: "*,!.git*,!cv/.git*,!files/bibtexs/.git*" | |
target: "rionda.to/" |