Fix moorhen centering issue #12
Workflow file for this run
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: Privateer Webserver Frontend CI/CD | |
on: | |
push: | |
branches: [ "webserver" ] | |
paths: | |
- webserver/** | |
pull_request: | |
branches: [ "webserver" ] | |
paths: | |
- webserver/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build frontend | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- run: | | |
export NODE_OPTIONS=--max-old-space-size=8192 | |
cd webserver | |
npm ci | |
npm run build | |
cp ../.htaccess dist | |
mv dist public_html | |
cd .. | |
- name: Push to server! | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.ftp_server_ip}} | |
username: ${{ secrets.ftp_username }}@privateer.hosted.york.ac.uk | |
password: ${{ secrets.ftp_password }} | |
protocol: ftps | |
port: 21 | |
local-dir: webserver/public_html/ | |
server-dir: ${{ secrets.ftp_server_dir }}/ | |