Create main.yml

This commit is contained in:
LinuxRocks2000
2024-04-10 12:24:32 -04:00
committed by GitHub
parent 239f2f3899
commit d8e25a647e

33
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
on:
push:
branches: [ rewrite ]
pull_request:
branches: [ rewrite ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: LinuxRocks2000/sitix-rewrite
ref: rewrite
path: sitix-rewrite
- uses: actions/checkout@v2
with:
path: sitix-ghp-test
- name: Build website
run: |
cd sitix-ghp-test
git checkout gh-pages
../sitix-rewrite/bin/sitix-ubuntu site -o gh-pages
mv gh-pages ..
rm -rf site
mv ../gh-pages/* .
git config --global user.name Robot
git config --global user.email notan@emailaddr.ess
git add .
git commit -am "automated build"
git branch
git push --force origin rewrite:gh-pages