Add .gitea/workflows/deploy.yml
This commit is contained in:
parent
0b3fb0b1d4
commit
73723f689c
|
@ -0,0 +1,15 @@
|
||||||
|
name: Deploy
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Deploy to alice
|
||||||
|
uses: https://git.alice.ufsj.edu.br/Carneiro/alice-sites-pull-action@main
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.ALICE_SSH_HOST }}
|
||||||
|
port: ${{ secrets.ALICE_SSH_PORT }}
|
||||||
|
key: ${{ secrets.ALICE_SSH_PRIV_KEY }}
|
||||||
|
username: ${{ secrets.ALICE_SSH_USERNAME }}
|
Loading…
Reference in New Issue