Skip to content

Commit

Permalink
Merge pull request #407 from kinode-dao/release-candidate
Browse files Browse the repository at this point in the history
Release candidate
  • Loading branch information
dr-frmr committed Jul 5, 2024
2 parents 3719ab3 + aa10072 commit bef5373
Show file tree
Hide file tree
Showing 61 changed files with 3,742 additions and 3,672 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: rust tagged release in main CI

on:
push:
tags: ['v[0-9].[0-9]+.[0-9]+']

jobs:
deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
timeout-minutes: 60

steps:
- name: build and deploy kinode
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_PROD_API_HOST }}
username: ${{ secrets.SSH_PROD_USER }}
key: ${{ secrets.SSH_PROD_API_ED25519KEY }}
port: ${{ secrets.SSH_PROD_PORT }}
command_timeout: 60m
script: |
curl -X PUT http://localhost:8000/monitor/build-kinode
Loading

0 comments on commit bef5373

Please sign in to comment.