20
.github/workflows/payload.yml
vendored
Normal file
20
.github/workflows/payload.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: Trigger Astro build on server
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
repository_dispatch:
|
||||
types: [payload_update]
|
||||
jobs:
|
||||
build:
|
||||
name: Run remote SSH command
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Trigger build via ssh
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: ${{ secrets.HOST }}
|
||||
username: ${{ secrets.USER }}
|
||||
key: ${{ secrets.KEY }}
|
||||
script: |
|
||||
ls
|
||||
Reference in New Issue
Block a user