8000 Update papers and homogenize style · NET-BYU/NET-BYU.github.io@19cae65 · GitHub
[go: up one dir, main page]

Skip to content

Update papers and homogenize style #25

Update papers and homogenize style

Update papers and homogenize style #25

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby environment
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Building website
run: make build
- name: Deploy files
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
source: "_site"
target: "groups/net-lab/www"
strip_components: 1
0