Skip to content

post 2024 tournament dates #62

post 2024 tournament dates

post 2024 tournament dates #62

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: Production
url: https://berkeley.mt/
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install node dependencies
run: npm install
- name: Install zola
run: >
wget -q -O -
"https://github.com/getzola/zola/releases/download/v0.17.2/zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz"
| tar xzf - -C /usr/local/bin
- name: Build site
run: npm run build
- name: Deploy
uses: burnett01/[email protected]
with:
switches: -avPh --delete --exclude=.htaccess
path: public/
remote_path: ~/public_html/new
remote_host: tsunami.ocf.berkeley.edu
remote_user: bmt
remote_key: ${{ secrets.SSH_PRIVATE_KEY }}