-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): setup autodeploy from main
- Loading branch information
1 parent
7d80171
commit a77e452
Showing
5 changed files
with
53 additions
and
1 deletion.
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,51 @@ | ||
name: Build and deploy to DreamHost via sshpass | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
run_install: false | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'pnpm' | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Install sshpass | ||
run: sudo apt-get install -y sshpass | ||
|
||
- name: Add SSH Key to known_hosts | ||
env: | ||
KNOWN_HOSTS_ENTRY: ${{ secrets.KNOWN_HOSTS_ENTRY }} | ||
HOST: ${{ secrets.HOST }} | ||
run: | | ||
mkdir -p ~/.ssh | ||
echo "$KNOWN_HOSTS_ENTRY" >> ~/.ssh/known_hosts | ||
chmod 644 ~/.ssh/known_hosts | ||
- name: Build static site | ||
run: pnpm build | ||
|
||
- name: Deploy via rsync and sshpass | ||
env: | ||
USERNAME: ${{ secrets.USERNAME }} | ||
PASSWORD: ${{ secrets.PASSWORD }} | ||
HOST: ${{ secrets.HOST }} | ||
DEPLOY_PATH: departuremono.com | ||
run: | | ||
sshpass -p "$PASSWORD" rsync -avz --delete ./dist/* $USERNAME@$HOST:$DEPLOY_PATH |
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.