Skip to content

Commit

Permalink
a lot of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tiemenrtuinstra committed Jan 22, 2024
1 parent d9f85fe commit 8c2bc64
Show file tree
Hide file tree
Showing 19 changed files with 834 additions and 166 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy to SFTP

on:
push:
tags:
- "v[0-9]*.0.0"

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build
run: npm install && npm run build

- name: Deploy to SFTP
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SFTP_SERVER }}
username: ${{ secrets.SFTP_USERNAME }}
password: ${{ secrets.SFTP_PASSWORD }}
source: "dist/*"
target: "/data/sites/web/tuinstrafamily/subsites/learnkorean.tuinstra.family"
28 changes: 0 additions & 28 deletions .github/workflows/webpack.yml

This file was deleted.

Loading

0 comments on commit 8c2bc64

Please sign in to comment.