Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/will-lynas/rust-vps-deploy
- Owner: will-lynas
- License: mit
- Created: 2024-08-30T12:58:00.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T20:30:14.000Z (4 months ago)
- Last Synced: 2024-09-19T02:29:44.798Z (4 months ago)
- Language: Shell
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 }}
```