Skip to content

Merge pull request #168 from nyu-dh/staging #66

Merge pull request #168 from nyu-dh/staging

Merge pull request #168 from nyu-dh/staging #66

Workflow file for this run

name: prod deploy
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- 'lib/**'
- 'README.md'
- '.github/workflows/test*.yml'
jobs:
prod-deploy:
runs-on: ubuntu-latest
steps:
# setup
- uses: actions/checkout@v3
- name: setup ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
# test html
- name: test html
run: bundle exec rake site:test
# build site
- name: build site
run: bundle exec jekyll build
# deploy via ftp
- name: ftp deploy to host
uses: SamKirkland/[email protected]
with:
server: ${{secrets.FTP_PROD_SERVER}}
username: ${{secrets.FTP_PROD_USER}}
password: ${{secrets.FTP_PROD_PW}}
protocol: ftps
state-name: ./.ftp-deploy-sync-state.json
local-dir: ./_site/