mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-23 00:21:38 +03:00
d7ea291e43
builds and distributes updates to release-candidate branch
22 lines
446 B
YAML
22 lines
446 B
YAML
name: rust release-candidate CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ release-candidate ]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
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 }}
|
|
script: |
|
|
cd ~
|
|
./build-kinode.sh
|