Skip to content

feat: binary clock, updated personal info (#37) #39

feat: binary clock, updated personal info (#37)

feat: binary clock, updated personal info (#37) #39

Workflow file for this run

name: Deploy
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build app
run: yarn build
- name: FTP-Deploy-Action
uses: kevinpainchaud/[email protected]
with:
ftp_host: ftp://ftp.bazant.dev/
ftp_username: bazant.dev
ftp_password: '${{ secrets.FTP_PASSWORD }}'
local_source_dir: '_site'
dist_target_dir: 'www'
exclude: "'^css/_.*'"