some tweaks #9
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
name: Deploy to Poisson | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Write SSH keys | |
run: | | |
install -m 600 -D /dev/null ~/.ssh/known_hosts | |
install -m 600 -D /dev/null ~/.ssh/id_ed25519_github | |
install -m 600 -D /dev/null ~/.ssh/id_ed25519_github.pub | |
echo "${{ secrets.SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519_github | |
echo "${{ secrets.SSH_PUBLIC_KEY }}" > ~/.ssh/id_ed25519_github.pub | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '23' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build:poisson | |
- name: Deploy | |
run: rsync -e 'ssh -i ~/.ssh/id_ed25519_github' -cavz out/ delucreziis@poisson.phc.dm.unipi.it:public_html/ |