Skip to content

[UPDATE] included hex explanation in tutorial #2

[UPDATE] included hex explanation in tutorial

[UPDATE] included hex explanation in tutorial #2

Workflow file for this run

name: Deploy to Server
on:
push:
branches:
- main # Adjust this branch if needed
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies and Build
run: |
npm install
npm run build
- name: Copy to Server
uses: appleboy/scp-action@v0.3.1
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: dist/
target: /var/www/hexle/