Skip to content

fix youtube video to work with the latest liqidtag #24

fix youtube video to work with the latest liqidtag

fix youtube video to work with the latest liqidtag #24

Workflow file for this run

on:
push:
branches:
- 'dev'
jobs:
build:
uses: Codeholics/codeholics/.github/workflows/build.yml@dev
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Site
uses: actions/checkout@v2
with:
ref: dev
path: codeholics
- name: Checkout Plugins
uses: actions/checkout@v2
with:
repository: Codeholics/pelican-plugins
path: pelican-plugins
- name: Build Content
run: |
cd codeholics
pip install -r requirements.txt
pelican ./content
- name: copy files to dev.codeholics.com
uses: burnett01/[email protected]
with:
switches: -avzr --delete
rsh: -oHostKeyAlgorithms=+ssh-rsa
path: "output/*"
remote_host: ${{ secrets.HOST }}
remote_port: ${{ secrets.PORT }}
remote_path: ${{ secrets.DEV_PATH }}
remote_user: ${{ secrets.USERNAME }}
remote_key: ${{ secrets.KEY }}
remote_key_pass: ${{ secrets.PASSPHRASE }}