Skip to content

The Imperial Navy

The Imperial Navy #26

Workflow file for this run

name: Deploy web files
on:
push:
paths:
- 'static/*.html'
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: copy static files
uses: appleboy/scp-action@v0.1.7
with:
host: radiofreewaba.net
username: ${{ secrets.DEPLOY_USER }}
port: 22
key: ${{ secrets.RFWKEY }}
source: "static/*"
target: ${{ secrets.DEPLOY_LOCATION }}
strip_components: 1