Skip to content

chore: fix news las'24 link #70

chore: fix news las'24 link

chore: fix news las'24 link #70

Workflow file for this run

name: Deploy
on:
pull_request:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build deps
run: yarn
- name: Build the website
run: yarn build
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: Deploy website
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
target-folder: .
- name: Add .nojekyll
run: |
mkdir extra/
touch extra/.nojekyll
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: Deploy .nojekyll
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
clean: false
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: Deploy to cmu server
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.CMU_SSH_PRIVATE_KEY }}
ARGS: "-rlgoDzvc -i"
SOURCE: "dist/"
REMOTE_HOST: ${{ secrets.CMU_HOST }}
REMOTE_USER: ${{ secrets.CMU_USER }}
TARGET: ${{ secrets.CMU_TARGET }}
SCRIPT_BEFORE: |
whoami
ls -al
SCRIPT_AFTER: |
whoami
ls -al
echo $RSYNC_STDOUT