Skip to content

LICENSE.md update

LICENSE.md update #2

Workflow file for this run

name: build
on:
push:
branches: [refactor, master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test, Lint, and Build
run: |
make ci
- name: Generate docs.
run: |
make docs
- name: Archive generated docs for gh pages.
uses: actions/upload-pages-artifact@v1
with:
path: docs/
deploy-pages:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1