Skip to content

Commit

Permalink
refactor: move to github actions to build site
Browse files Browse the repository at this point in the history
  • Loading branch information
renbaoshuo committed Jul 3, 2024
1 parent c8edf76 commit 93f36a2
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 27 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build Site

on:
push:
branches: ['sources', 'generator']
pull_request:
branches: ['sources', 'generator']

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
ref: sources
path: sources

- uses: actions/checkout@v4
with:
ref: generator
path: generator

- name: Copy files
run: |
cp -a generator/webroot workdir
cp -a sources/{post,content.php,index.md} generator/{mdgen.py,sitegen.php} workdir
mv workdir/img/favicon.ico workdir/favicon.ico
- name: Generate site
run: |
cd workdir
php sitegen.php
rm -r post/*.md index.md *.{py,php}
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: workdir

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
pages: write
id-token: write

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

0 comments on commit 93f36a2

Please sign in to comment.