Skip to content

Commit bef5373

Browse files
authored
Merge pull request #407 from kinode-dao/release-candidate
Release candidate
2 parents 3719ab3 + aa10072 commit bef5373

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+3742
-3672
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: rust tagged release in main CI
2+
3+
on:
4+
push:
5+
tags: ['v[0-9].[0-9]+.[0-9]+']
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
if: github.ref == 'refs/heads/main'
11+
timeout-minutes: 60
12+
13+
steps:
14+
- name: build and deploy kinode
15+
uses: appleboy/ssh-action@master
16+
with:
17+
host: ${{ secrets.SSH_PROD_API_HOST }}
18+
username: ${{ secrets.SSH_PROD_USER }}
19+
key: ${{ secrets.SSH_PROD_API_ED25519KEY }}
20+
port: ${{ secrets.SSH_PROD_PORT }}
21+
command_timeout: 60m
22+
script: |
23+
curl -X PUT http://localhost:8000/monitor/build-kinode

0 commit comments

Comments
 (0)