mirror of
https://github.com/mudler/luet.git
synced 2025-09-17 15:52:15 +00:00
📓 Add docs alongside
This commit is contained in:
22
docs/.github/workflows/pages.yml
vendored
Normal file
22
docs/.github/workflows/pages.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Github Pages
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
- name: Build 🔧
|
||||
run: |
|
||||
make build
|
||||
- name: Deploy 🚀
|
||||
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
|
||||
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||
with:
|
||||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||
BRANCH: gh-pages
|
||||
FOLDER: public
|
Reference in New Issue
Block a user