24 lines
583 B
YAML
24 lines
583 B
YAML
---
|
|
name: Publish
|
|
run-name: ${{ github.actor }} publish
|
|
on: [push]
|
|
jobs:
|
|
deploy_via_ssh:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- run: ls -las ./manifests/*
|
|
|
|
# - name: Copy files
|
|
# uses: https://github.com/appleboy/scp-action@master
|
|
# with:
|
|
# host: ${{ secrets.HOST }}
|
|
# username: ${{ secrets.USERNAME }}
|
|
# key: ${{ secrets.SSH_KEY }}
|
|
# port: 22
|
|
# source: ./manifests/*
|
|
# target: /srv/teu/rewinger/packages/
|
|
# overwrite: true
|