Skip to content

Update list-style to line-height in description-item style.scss #12

Update list-style to line-height in description-item style.scss

Update list-style to line-height in description-item style.scss #12

Workflow file for this run

# This workflow runs composer and deploys the theme on a server
name: Deploy on gmu Server
on: [push, workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: npm ci
- run: npm run build
- name: rsync deployments
uses: burnett01/[email protected]
with:
switches: -avzr --delete --exclude .git --exclude .github --exclude node_modules --exclude package-lock.json --exclude .gitignore --exclude .eslintrc.js --exclude .eslintignore --exclude .prettierrc --exclude DOCKER_ENV --exclude docker_tag --exclude output.log
path: /
remote_path: ${{ secrets.GMU_PATH }}
remote_host: ${{ secrets.GMU_SERVER }}
remote_user: ${{ secrets.GMU_USER }}
remote_key: ${{ secrets.GMU_KEY }}