mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-11-25 07:07:06 +03:00
24 lines
499 B
YAML
24 lines
499 B
YAML
name: rust release-candidate CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ release-candidate ]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
- name: build and deploy kinode
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.SSH_HOST }}
|
|
username: ${{ secrets.SSH_USER }}
|
|
key: ${{ secrets.SSH_ED25519KEY }}
|
|
port: ${{ secrets.SSH_PORT }}
|
|
command_timeout: 60m
|
|
script: |
|
|
cd ~
|
|
./build-kinode.sh
|