Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
411c2efcda | |||
0a23fb19a7 | |||
202de2e4a0 | |||
d56fcfe699 | |||
a2dc8d8a0e |
@ -3,20 +3,36 @@ name: Build Node
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- prod
|
- prod
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- prod
|
- prod
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Setup SSH
|
||||||
- uses: actions/setup-node@v4
|
run: |
|
||||||
with:
|
mkdir -p ~/.ssh
|
||||||
node-version: 24
|
echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_ed25519
|
||||||
cache: npm
|
chmod 600 ~/.ssh/id_ed25519
|
||||||
- run: npm ci
|
ssh-keyscan -H "molnarandrei.com" >> ~/.ssh/known_hosts
|
||||||
- run: ls
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 24
|
||||||
|
|
||||||
|
- name: Install
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
run: |
|
||||||
|
ssh -i ~/.ssh/id_ed25519 andrei@molnarandrei.com "rm -rf ~/www/*"
|
||||||
|
scp -i ~/.ssh/id_ed25519 -r ./build/* andrei@molnarandrei.com:~/www/
|
||||||
|
Reference in New Issue
Block a user