Skip to content

website: remove google analytics #146

website: remove google analytics

website: remove google analytics #146

Workflow file for this run

name: Website
on:
workflow_dispatch:
push: # only runs on commits to main branch (typically after a merge)
branches:
- main
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
- name: ✨ Setup Hugo
env:
HUGO_VERSION: 0.100.1
run: |
mkdir ~/hugo
cd ~/hugo
curl -L "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz" --output hugo.tar.gz
tar -xvzf hugo.tar.gz
sudo mv hugo /usr/local/bin
- name: 🛠️ Build
run: hugo --source website --destination output --cleanDestinationDir --baseURL https://swharden.com/csdv/
- name: 🔐 Create Key File
run: install -m 600 -D /dev/null ~/.ssh/id_rsa
- name: 🔑 Populate Key
run: echo "${{ secrets.PRIVATE_KEY }}" > ~/.ssh/id_rsa
- name: 🚀 Upload
run: rsync --archive --delete --stats -e 'ssh -p 18765 -o StrictHostKeyChecking=no' 'website/output/' [email protected]:~/www/swharden.com/public_html/csdv/
- name: 🧹 Clear Cache
run: ssh [email protected] -p 18765 "site-tools-client domain update id=1 flush_cache=1"