Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/will-lynas/rust-vps-deploy

GitHub Action for deploying rust to a VPS
https://github.com/will-lynas/rust-vps-deploy

Last synced: about 2 months ago
JSON representation

GitHub Action for deploying rust to a VPS

Awesome Lists containing this project

README

        

# rust-vps-deploy

GitHub Action for deploying Rust to a VPS

## Example Usage

```yml
on:
push:
branches:
- main
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: will-lynas/[email protected]
with:
host: ${{ secrets.VPS_HOST }}
username: ${{ secrets.VPS_USER }}
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
```