-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Deploy to Remote Server | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up SSH and Deploy Changes | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ec2-3-87-142-202.compute-1.amazonaws.com | ||
username: ubuntu | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.SSH_PASSPHRASE }} | ||
port: 22 | ||
script: | | ||
# Ensure Rust installed via rustup is used | ||
export PATH="$HOME/.cargo/bin:$PATH" | ||
# Verify Cargo is available | ||
cargo --version || { echo "Cargo not found"; exit 1; } | ||
# Navigate to the project directory | ||
cd fossil-headers-db | ||
git fetch origin main | ||
git reset --hard origin/main | ||
# Build the project | ||
cargo build --release | ||
# Move the binary to the correct location | ||
sudo mv target/release/fossil_headers_db /usr/local/bin/fossil_headers_db | ||
# Restart the service | ||
sudo systemctl daemon-reload | ||
sudo systemctl restart fossil_headers_db | ||
sudo systemctl status fossil_headers_db --no-pager |