Skip to content

.github/workflows/update-site.yml #42

.github/workflows/update-site.yml

.github/workflows/update-site.yml #42

Workflow file for this run

on:
workflow_dispatch:
jobs:
build:
name: Update site
runs-on: ubuntu-latest
steps:
- name: Clone ehui (from GitHub)
run: git clone https://github.com/ehanahamed/ehui.git
- name: Clone site (from GitHub)
run: git clone https://github.com/ehanahamed/site.git
- name: Copy ehui's site/ into site's site/ehui/
run: |
rm -rf site/site/ehui
cp -R ehui/site site/site/ehui
- name: Commit & push to site (gh)
run: |
cd site
git add .
git config --global user.name "Ehan"
git config --global user.email "ehanahamed@ehan.dev"
git commit -m "Update ehui"
git push https://ehanahamed:${{ secrets.GH_TOKEN }}@github.com/ehanahamed/site.git --all