Skip to content

edit readme (#3)

edit readme (#3) #2

Workflow file for this run

name: Copy README to gh-pages
on:
push:
branches:
- "main"
paths:
- "README.md"
jobs:
copy:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
cp -f README.md ${{ runner.temp }}/README.md
- uses: actions/checkout@v4
with:
ref: gh-pages
- run: |
cp -f ${{ runner.temp }}/README.md .
git config user.name "FiberBot"
git config user.email "[email protected]"
git add README.md
git commit --signoff -m "copy README from main"
git push